generated from ivanms1/next-js-template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
68 lines (68 loc) · 1.73 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
{
"name": "next-js-template",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"prepare": "husky install",
"pre-commit": "lint-staged"
},
"dependencies": {
"@types/qrcode": "^1.4.2",
"@types/react-table": "^7.7.9",
"@types/websocket": "^1.0.4",
"axios": "^0.21.2",
"classnames": "^2.3.1",
"date-fns": "^2.28.0",
"date-fns-tz": "^1.3.0",
"eslint": "^7.32.0",
"i": "^0.3.7",
"next": "11.1.3",
"qrcode": "^1.5.0",
"react": "17.0.2",
"react-device-detect": "^2.1.2",
"react-dom": "17.0.2",
"react-embed-gist": "^1.0.12",
"react-identicons": "^1.2.5",
"react-loader-spinner": "^6.0.0-0",
"react-query": "^3.34.8",
"react-table": "^7.7.0",
"react-waypoint": "^10.1.0",
"recharts": "^2.1.8",
"sass": "^1.49.0",
"websocket": "^1.0.34",
"zustand": "^3.7.0"
},
"devDependencies": {
"@svgr/webpack": "^6.2.0",
"@types/react": "17.0.38",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"eslint-config-next": "^12.0.8",
"eslint-config-prettier": "^8.3.0",
"husky": "^7.0.4",
"lint-staged": "^11.1.2",
"prettier": "^2.5.1",
"stylelint": "^14.2.0",
"stylelint-config-prettier": "^9.0.3",
"stylelint-config-standard": "^24.0.0",
"stylelint-order": "^5.0.0",
"stylelint-prettier": "^2.0.0",
"typescript": "4.5.4",
"typescript-plugin-css-modules": "^3.4.0"
},
"lint-staged": {
"*.{json,md}": [
"prettier --write"
],
"*.{js,jsx,ts,tsx}": [
"prettier --write",
"./node_modules/.bin/eslint --fix"
],
"*.{css,scss}": [
"stylelint --fix"
]
}
}