-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 1.77 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
{
"name": "thoughtful-fish",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "node dev-server/index.js",
"build": "next build",
"start": "next start",
"lint": "eslint '*/**/*.{js,ts,tsx}' --fix"
},
"dependencies": {
"@material-ui/core": "^4.11.2",
"@material-ui/icons": "^4.11.2",
"@material-ui/lab": "^4.0.0-alpha.57",
"axios": "^0.21.1",
"jsonwebtoken": "^8.5.1",
"lodash.startcase": "^4.4.0",
"moment": "^2.29.1",
"next": "^12.0.0",
"nookies": "^2.5.0",
"nprogress": "^0.2.0",
"object-hash": "^2.2.0",
"react": "17.0.1",
"react-dom": "^17.0.1",
"react-draggable": "^4.4.3",
"react-number-format": "^4.4.4",
"react-virtualized": "^9.22.3",
"react-virtualized-auto-sizer": "^1.0.4",
"sass": "^1.32.0",
"swr": "^0.3.11",
"vm2": "^3.9.6"
},
"devDependencies": {
"@next/eslint-plugin-next": "^12.0.1",
"@types/jsonwebtoken": "^8.5.0",
"@types/lodash.startcase": "^4.4.6",
"@types/node": "^14.14.19",
"@types/nprogress": "^0.2.0",
"@types/object-hash": "^2.1.0",
"@types/react": "^17.0.0",
"@types/react-virtualized": "^9.21.11",
"@types/react-virtualized-auto-sizer": "^1.0.0",
"@typescript-eslint/eslint-plugin": "^4.15.0",
"@typescript-eslint/parser": "^4.15.0",
"eslint": "^7.19.0",
"eslint-config-prettier": "^7.2.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-react": "^7.22.0",
"eslint-plugin-react-hooks": "^4.2.0",
"husky": "^5.0.9",
"lint-staged": "^10.5.4",
"prettier": "^2.2.1",
"typescript": "^4.1.3"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,ts,tsx}": [
"eslint --fix"
]
}
}