-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
61 lines (61 loc) · 1.75 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "@eyevinn/typescript-nextui",
"version": "1.0.0",
"description": "The default typescript-nextui template for eyevinn projects",
"scripts": {
"test": "jest",
"prepare": "husky install",
"lint": "next lint",
"pretty": "prettier --check --ignore-unknown .",
"typecheck": "tsc --noEmit -p tsconfig.json",
"dev": "set NODE_OPTIONS=--inspect && next dev",
"build": "next build",
"start": "next start",
"postversion": "git push && git push --tags",
"format": "prettier --write ."
},
"license": "MIT",
"engines": {
"node": ">=18.15.0"
},
"dependencies": {
"@eyevinn/typescript-nextui": "file:",
"@nextui-org/react": "^2.2.9",
"@tabler/icons-react": "^2.32.0",
"browser-or-node": "^3.0.0",
"cors": "^2.8.5",
"express": "^4.21.0",
"eyevinn-channel-engine": "^4.3.12",
"framer-motion": "^11.5.4",
"hls.js": "^1.5.15",
"minio": "^8.0.1",
"next": "^14.1.3",
"plyr": "^3.7.8",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"server-only": "^0.0.1",
"sharp": "^0.33.3",
"tailwind-merge": "^1.14.0"
},
"devDependencies": {
"@commitlint/cli": "^17.4.2",
"@commitlint/config-conventional": "^17.4.2",
"@types/jest": "^29.4.0",
"@types/node": "^18.11.18",
"@types/react": "^18.2.37",
"@types/react-dom": "^18.2.15",
"@typescript-eslint/eslint-plugin": "^5.51.0",
"@typescript-eslint/parser": "^5.51.0",
"autoprefixer": "^10.4.15",
"eslint": "^8.33.0",
"eslint-config-next": "^13.5.4",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.3",
"jest": "^29.5.0",
"prettier": "^2.8.8",
"tailwindcss": "^3.4.1",
"ts-jest": "^29.0.5",
"typescript": "^5.2.2"
}
}