-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.48 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
{
"name": "next-with-dva-no-router-export",
"main": "server.js",
"dependencies": {
"@zeit/next-css": "^1.0.1",
"@zeit/next-less": "^1.0.1",
"autoprefixer": "^9.3.1",
"axios": "^0.18.0",
"babel-plugin-import": "^1.11.0",
"babel-plugin-wrap-in-js": "^1.1.1",
"dva-no-router": "^1.0.3",
"express": "^4.15.3",
"file-loader": "^2.0.0",
"isomorphic-unfetch": "^2.0.0",
"less": "^3.8.1",
"less-loader": "^4.1.0",
"next": "latest",
"postcss-adaptive": "^0.5.0",
"postcss-easy-import": "^3.0.0",
"postcss-loader": "^3.0.0",
"raw-loader": "^0.5.1",
"react": "^16.0.0",
"react-dom": "^16.0.0",
"serve": "9.4.0",
"styled-jsx": "^3.1.0",
"styled-jsx-plugin-less": "0.0.1-alpha.1",
"styled-jsx-plugin-postcss": "^2.0.0"
},
"devDependencies": {
"babel-eslint": "^8.2.2",
"babel-plugin-css-modules-transform": "^1.6.1",
"babel-plugin-module-resolver": "^3.1.1",
"eslint": "^4.19.1",
"eslint-config-airbnb": "^16.1.0",
"eslint-import-resolver-babel-module": "^4.0.0",
"eslint-plugin-import": "^2.9.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.7.0",
"node-less": "^1.0.0",
"postcss": "^7.0.5",
"postcss-cssnext": "^3.1.0"
},
"scripts": {
"dev": "node .",
"build": "next build",
"preexport": "npm run build",
"export": "next export",
"prestart": "npm run export",
"start": "serve out",
"finishexport": "next build && next export"
}
}