-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
67 lines (67 loc) · 2.18 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
{
"name": "raspicam",
"version": "2.1.2",
"type": "commonjs",
"browser": {
"stream": false
},
"author": "Patrick Matt",
"license": "MIT",
"scripts": {
"start:site": "node --loader ts-node/esm ./serve.site.mts",
"start:server": "npm run build:server && node ./build/server.js",
"code:check": "npm run code:check-eslint && yarn code:check-tsc",
"code:check-eslint": "eslint --fix ./src/",
"code:check-tsc": "tsc -p ./tsconfig.json",
"build": "npm run build:site && npm run build:server",
"build:server": "node --loader ts-node/esm ./build.server.mts",
"build:site": "node --loader ts-node/esm ./build.site.mts",
"release": "yarn release:patch",
"release:patch": "yarn version --patch && git push --follow-tags",
"release:minor": "yarn version --minor && git push --follow-tags",
"release:major": "yarn version --major && git push --follow-tags"
},
"dependencies": {
"buffer": "^6.0.3",
"chalk": "^4.1.2",
"cron": "^2.3.0",
"express": "^4.20.0",
"express-rate-limit": "^6.7.0",
"jmuxer": "^2.0.5",
"luxon": "^3.3.0",
"onoff": "^6.0.3",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router-dom": "^6.6.2",
"styled-components": "^5.3.6",
"styled-normalize": "^8.0.7",
"yargs": "^17.6.2"
},
"devDependencies": {
"@types/cron": "^2.0.1",
"@types/express": "^4.17.15",
"@types/express-rate-limit": "^6.0.0",
"@types/jmuxer": "^2.0.3",
"@types/luxon": "^3.2.0",
"@types/node": "^18.11.18",
"@types/react": "^18.0.26",
"@types/react-dom": "^18.0.10",
"@types/react-router-dom": "^5.3.3",
"@types/styled-components": "^5.1.26",
"@types/yargs": "^17.0.20",
"@typescript-eslint/eslint-plugin": "^5.48.1",
"@typescript-eslint/parser": "^5.48.1",
"esbuild": "^0.17.4",
"eslint": "^8.31.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-react": "^7.32.0",
"eslint-plugin-react-hooks": "^4.6.0",
"prettier": "^2.8.3",
"react-is": "^18.2.0",
"ts-node": "^10.9.1",
"typescript": "^4.9.4",
"typescript-plugin-styled-components": "^2.0.0"
}
}