-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
64 lines (64 loc) · 1.99 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
{
"name": "next-node-monitor",
"version": "0.1.0",
"private": true,
"scripts": {
"prebuild": "node preBuild.js",
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"export": "next export",
"test": "jest",
"test:ci": "jest --coverage --verbose",
"prepare": "husky install",
"lint-staged": "lint-staged"
},
"dependencies": {
"@testing-library/dom": "^8.11.3",
"@testing-library/jest-dom": "^5.16.2",
"@testing-library/react": "^12.1.4",
"@testing-library/user-event": "^13.5.0",
"@types/jest": "^27.4.1",
"@types/node": "^17.0.21",
"@types/node-os-utils": "file:types/node-os-utils",
"@typescript-eslint/eslint-plugin": "^5.15.0",
"axios": "^0.26.1",
"babel-plugin-dynamic-import-node": "^2.3.3",
"chart.js": "^3.7.1",
"cors": "^2.8.5",
"dotenv": "^11.0.0",
"eslint-plugin-jest": "^25.7.0",
"eslint-plugin-testing-library": "^5.1.0",
"jest": "^27.5.1",
"memory-cache": "^0.2.0",
"next": "^12.1.0",
"node-os-utils": "^1.3.6",
"prettier": "^2.6.0",
"qrcode.react": "^1.0.1",
"react": "17.0.2",
"react-chartjs-2": "^4.0.0",
"react-dom": "17.0.2",
"react-icons": "^4.3.1",
"react-useinterval": "^1.0.2",
"sass": "^1.49.9",
"swr": "^1.2.1",
"ts-jest": "^27.1.3"
},
"devDependencies": {
"@types/cors": "^2.8.12",
"@types/memory-cache": "^0.2.1",
"@types/qrcode.react": "^1.0.2",
"@types/react": "17.0.38",
"eslint": "8.6.0",
"eslint-config-next": "12.0.8",
"husky": "^7.0.4",
"identity-obj-proxy": "^3.0.0",
"lint-staged": "^12.1.7",
"typescript": "^4.5.4"
},
"lint-staged": {
"*.(tsx|ts)": "eslint --cache --fix",
"*": "prettier --write --ignore-unknown"
}
}