-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 951 Bytes
/
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
{
"name": "inpostack-public-web",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next",
"build": "next build",
"start": "next start -p 3000",
"lint": "next lint",
"lint-staged": "lint-staged",
"prepare": "husky install"
},
"dependencies": {
"axios": "^0.21.1",
"moment": "^2.29.1",
"next": "^11.1.0",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-markdown": "^7.1.2",
"react-responsive": "^9.0.0-beta.3",
"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"
]
}
}