generated from ooade/NextSimpleStarter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.04 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
{
"name": "next-simple-starter",
"private": true,
"version": "3.0.0",
"repository": {
"url": "https://github.com/ooade/NextSimpleStarter"
},
"engines": {
"node": ">=10.0.0"
},
"license": "MIT",
"eslintConfig": {
"extends": "react-app"
},
"dependencies": {
"@material-ui/core": "^4.6.1",
"next": "^9.4.2",
"next-offline": "^5.0.2",
"react": "^16.13.1",
"react-axe": "^3.4.1",
"react-dom": "^16.13.1"
},
"scripts": {
"dev": "next",
"start": "next start",
"lint": "eslint components",
"build": "next build",
"build:server": "NEXT_TARGET=server next build",
"export:server": "NEXT_TARGET=server next export",
"export": "npm run build:server && npm run export:server",
"start:static": "serve",
"now-build": "next build"
},
"devDependencies": {
"babel-eslint": "^10.1.0",
"eslint": "^6.8.0",
"eslint-config-react-app": "^5.2.1",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.20.0",
"eslint-plugin-react-hooks": "^4.0.2",
"serve": "^11.1.0"
}
}