-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.37 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
{
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"format:check": "prettier . --ignore-path .gitignore --check",
"format:fix": "prettier . --ignore-path .gitignore --write",
"prepare": "husky install"
},
"dependencies": {
"@mantine/core": "^5.2.3",
"@mantine/dates": "^5.2.3",
"@mantine/form": "^5.2.3",
"@mantine/hooks": "^5.2.3",
"@mantine/next": "^5.2.3",
"@types/w3c-web-serial": "^1.0.2",
"csv": "^6.2.0",
"dayjs": "^1.11.4",
"next": "12.1.4",
"next-pwa": "^5.6.0",
"protobufjs": "^6.11.3",
"react": "18.0.0",
"react-dom": "18.0.0",
"recharts": "^2.1.12",
"tabler-icons-react": "^1.51.0",
"ts-proto": "^1.115.5"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@types/node": "^18.0.0",
"@types/react": "^18.0.1",
"autoprefixer": "^10.4.7",
"eslint": "8.12.0",
"eslint-config-next": "12.1.4",
"eslint-config-prettier": "^8.5.0",
"husky": "^8.0.1",
"lint-staged": "^13.0.2",
"postcss": "^8.4.14",
"prettier": "^2.6.2",
"tailwindcss": "^3.1.4",
"typescript": "^4.7.4"
}
}