-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.11 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
{
"name": "inpostack-admin-web-next",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next",
"build": "next build",
"start": "next start -p 3002",
"lint": "next lint",
"lint-staged": "lint-staged",
"prepare": "husky install"
},
"dependencies": {
"@nivo/core": "^0.79.0",
"@nivo/line": "^0.79.1",
"axios": "^0.21.1",
"chart.js": "^3.5.1",
"moment": "^2.29.1",
"next": "^11.1.0",
"nivo": "^0.31.0",
"react": "17.0.2",
"react-chartjs-2": "^3.0.4",
"react-datepicker": "^4.2.1",
"react-daum-postcode": "^2.0.6",
"react-dom": "17.0.2",
"react-responsive": "^9.0.0-beta.4",
"semantic-ui-css": "^2.4.1",
"semantic-ui-react": "^2.0.3",
"styled-components": "^5.3.0",
"swr": "^0.5.6"
},
"devDependencies": {
"babel-plugin-styled-components": "^1.13.2",
"eslint": "7.32.0",
"eslint-config-next": "11.0.1",
"husky": "^7.0.1",
"lint-staged": "^11.1.2",
"prettier": "^2.3.2",
"sass": "^1.38.1"
},
"lint-staged": {
"**/*.{js, jsx}": [
"eslint --fix",
"prettier --write"
]
}
}