-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
40 lines (40 loc) · 1.16 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
{
"name": "start-app",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "NODE_ENV=production node server.js",
"export": "next build && next export",
"lint": "npm run lint:js && npm run lint:styles",
"lint:js": "eslint \"./src/**/*.js\" --fix",
"lint:styles": "stylelint \"./src/pages/**/*.js\" \"./src/**/*.styles.js\" \"./src/**/*.css\" \"./src/**/*.scss\""
},
"dependencies": {
"next": "10.2.3",
"prop-types": "^15.7.2",
"react": "17.0.2",
"react-dom": "17.0.2",
"sass": "^1.34.0"
},
"devDependencies": {
"@babel/plugin-proposal-class-properties": "^7.13.0",
"@babel/plugin-proposal-decorators": "^7.14.2",
"@babel/plugin-proposal-optional-chaining": "^7.14.2",
"babel-eslint": "^10.1.0",
"eslint": "^7.27.0",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.23.2",
"eslint-plugin-react-hooks": "^4.2.0",
"husky": "^6.0.0",
"stylelint": "^13.13.1",
"stylelint-config-recommended-scss": "^4.2.0",
"stylelint-scss": "^3.19.0"
},
"husky": {
"hooks": {
"pre-push": "npm run lint"
}
}
}