-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
115 lines (115 loc) · 3.16 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
{
"name": "cctv",
"version": "1.0.0",
"private": true,
"scripts": {
"dev": "next dev",
"start": "NODE_OPTIONS='--inspect=0.0.0.0:9229' next start",
"build": "next build",
"start:init": "node ./.next/server/init.js",
"start:cleanup": "node --inspect=0.0.0.0:9229 ./.next/server/cleanup.js",
"start:sync": "node --inspect=0.0.0.0:9229 ./.next/server/sync.js",
"start:worker": "node --inspect=0.0.0.0:9229 ./.next/server/worker.js",
"fix": "run-p -lsc fix:*",
"fix:eslint": "eslint --fix src",
"fix:prettier": "prettier --write \"src/**/*.ts*\"",
"lint": "run-p -lsc lint:*",
"lint:ts": "tsc --noEmit",
"lint:eslint": "eslint src",
"lint:prettier": "prettier -l \"src/**/*.ts*\"",
"test": "jest",
"test:watch": "jest --watch"
},
"dependencies": {
"@emotion/babel-plugin": "^11.2.0",
"@emotion/react": "^11.1.5",
"@emotion/styled": "^11.1.5",
"@material-ui/core": "^5.0.0-alpha.21",
"@material-ui/lab": "^5.0.0-alpha.21",
"@tanstack/react-query": "^4.36.1",
"@use-gesture/react": "^10.2.23",
"chokidar": "^3.5.1",
"cors": "^2.8.5",
"dayjs": "^1.11.7",
"fluent-ffmpeg": "^2.1.2",
"hls.js": "^1.4.12",
"knex": "^0.95.5",
"mkdirp": "^1.0.4",
"mysql2": "^2.3.3",
"next": "^12.1.0",
"next-seo": "^4.24.0",
"node-fetch": "^3.1.1",
"node-onvif": "^0.1.7",
"nosleep.js": "^0.12.0",
"npm-run-all": "^4.1.5",
"p-queue": "7.1.0",
"pino": "^7.9.1",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-use-gesture": "9.1.3",
"rimraf": "^3.0.2",
"send": "^0.17.1",
"superjson": "^1.12.1",
"tailwind-merge": "^1.14.0",
"zod": "^3.11.6",
"zustand": "^4.1.5"
},
"devDependencies": {
"@types/cors": "^2.8.13",
"@types/fluent-ffmpeg": "^2.1.16",
"@types/hls.js": "^1.0.0",
"@types/jest": "^28.1.2",
"@types/mime-types": "^2.1.0",
"@types/mkdirp": "^1.0.1",
"@types/node": "^17.0.2",
"@types/node-fetch": "^3.0.3",
"@types/react": "^17.0.3",
"@types/react-dom": "^17.0.2",
"@types/react-router-dom": "^5.1.7",
"@types/rimraf": "^3.0.0",
"@types/send": "^0.17.1",
"@typescript-eslint/eslint-plugin": "^5.8.0",
"@typescript-eslint/parser": "^5.8.0",
"autoprefixer": "^10.4.16",
"confusing-browser-globals": "^1.0.10",
"eslint": "^8.5.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-react": "^7.22.0",
"eslint-plugin-react-hooks": "^4.2.0",
"jest": "^28.1.1",
"postcss": "^8.4.31",
"prettier": "^3.0.3",
"prettier-plugin-tailwindcss": "^0.5.5",
"tailwindcss": "^3.3.3",
"ts-jest": "^28.0.5",
"typescript": "^4.2.3"
},
"prettier": {
"semi": false
},
"jest": {
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
],
"testPathIgnorePatterns": [
"lib/",
"test/rules/",
"node_modules/"
],
"testEnvironment": "node",
"moduleDirectories": [
"node_modules",
"src"
],
"maxConcurrency": 1
}
}