This repository has been archived by the owner on Feb 24, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
70 lines (70 loc) · 1.86 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "nerg",
"version": "1.0.0",
"scripts": {
"eslint": "eslint ./",
"eslint-fix": "eslint ./ --fix",
"gulp": "./node_modules/gulp/bin/gulp.js",
"postcss": "postcss --config postcss.config.js --replace ./static/css/app.css",
"css:prod": "npm run gulp && npm run postcss",
"dev": "node server.babel.js -p $PORT",
"build": "npm run css:prod && next build",
"start": "NODE_ENV=production node server.babel.js -p $PORT",
"heroku-build": "next build",
"prod": "npm run css:prod && npm run heroku-build",
"heroku-postbuild": "npm run prod"
},
"pre-commit": [
"eslint"
],
"now": {
"name": "nerg",
"alias": "nerg",
"env": [
"DATABASE_URL"
]
},
"dependencies": {
"autoprefixer": "^7.1.1",
"axios": "^0.15.3",
"babel-eslint": "^7.2.3",
"babel-plugin-root-import": "^5.1.0",
"babel-preset-es2015": "^6.22.0",
"express": "^4.15.3",
"express-graphql": "^0.6.6",
"express-logging": "^1.1.1",
"graphql": "^0.10.1",
"gulp": "^3.9.1",
"gulp-csso": "^3.0.0",
"gulp-sass": "^3.1.0",
"isomorphic-fetch": "^2.2.1",
"logops": "^2.0.0",
"next": "^2.4.3",
"next-redux-wrapper": "^1.1.1",
"node-sass": "^4.5.3",
"pg": "^6.2.4",
"postcss-cli": "^4.1.0",
"postcss-easy-import": "^2.1.0",
"postcss-flexbugs-fixes": "^3.0.0",
"postcss-loader": "^2.0.6",
"prop-types": "^15.5.9",
"raw-loader": "^0.5.1",
"react": "^15.6.1",
"react-apollo": "^1.4.2",
"react-dom": "^15.6.1",
"react-redux": "^5.0.1",
"react-transition-group": "^1.2.0",
"reactstrap": "^4.6.2",
"redux": "^3.6.0",
"redux-thunk": "^2.1.0",
"sass-loader": "^6.0.6",
"sequelize": "^4.1.0"
},
"devDependencies": {
"eslint": "^3.19.0",
"eslint-plugin-react": "^7.0.1",
"pre-commit": "^1.2.2"
},
"author": "",
"license": "ISC"
}