forked from davidnguyen11/nextjs-full-demo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.59 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
{
"name": "next-material-fetching-data",
"version": "1.0.0",
"scripts": {
"gulp": "./node_modules/gulp/bin/gulp.js",
"postcss": "postcss --config postcss.config.js --replace static/css/app.css",
"css:dev": "node-sass --output-style expanded --precision 6 styles/bootstrap-grid.scss static/css/app.css & npm run postcss",
"css:prod": "npm run gulp && npm run postcss",
"dev": "next",
"build": "next build",
"start": "npm run css:dev && nodemon -w server.js",
"production": "npm run css:prod && npm run build && NODE_ENV=production node index.js"
},
"dependencies": {
"async-reactor": "^1.2.0",
"babel-plugin-root-import": "^5.1.0",
"babel-polyfill": "^6.23.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-es2017": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"babel-register": "^6.24.1",
"express": "^4.15.2",
"isomorphic-fetch": "^2.2.1",
"material-ui": "0.18.0",
"next": "3.0.0-beta16",
"next-redux-wrapper": "^1.1.2",
"next-routes": "^1.0.24",
"node-sass": "^4.5.2",
"postcss-loader": "^2.0.5",
"raw-loader": "^0.5.1",
"react": "^15.5.4",
"react-dom": "^15.5.4",
"react-redux": "^5.0.4",
"react-tap-event-plugin": "2.0.1",
"redux": "^3.6.0",
"redux-devtools-extension": "^2.13.2",
"sass-loader": "^6.0.5"
},
"author": "",
"license": "ISC",
"devDependencies": {
"autoprefixer": "^7.1.0",
"gulp": "^3.9.1",
"gulp-csso": "^3.0.0",
"gulp-sass": "^3.1.0",
"postcss-cli": "^4.0.0",
"postcss-easy-import": "^2.0.0",
"postcss-flexbugs-fixes": "^3.0.0"
}
}