-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
69 lines (69 loc) · 1.4 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
{
"name": "client",
"version": "0.1.0",
"private": true,
"dependencies": {
"@next/bundle-analyzer": "^12.3.1",
"chart.js": "^3.8.0",
"chartjs-adapter-luxon": "^1.1.0",
"chartjs-plugin-streaming": "^2.0.0",
"date-fns": "^2.29.2",
"express": "^4.18.1",
"gsap": "^3.11.3",
"luxon": "^2.4.0",
"mqtt": "^4.3.7",
"next": "^12.2.0",
"react": "^18.2.0",
"react-chartjs-2": "^4.2.0",
"react-dom": "^18.1.0",
"react-use-websocket": "^4.2.0",
"sharp": "^0.31.1",
"uuid": "^9.0.0",
"ws": "^8.8.1",
"mapbox-gl": "^2.9.2"
},
"scripts": {
"dev": "node server.js",
"build": "next build",
"start": "NODE_ENV=production node server.js",
"lint": "next lint",
"prepare": "husky install"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"autoprefixer": "^10.4.12",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.18.0",
"eslint-config-next": "^12.2.0",
"husky": "^8.0.0",
"lint-staged": "^13.0.3",
"postcss": "^8.4.17",
"tailwindcss": "^3.1.8"
},
"optionalDependencies": {
"bufferutil": "^4.0.6",
"utf-8-validate": "^5.0.9"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}