-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
71 lines (71 loc) · 2.18 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
71
{
"name": "graceshopper",
"version": "1.0.0",
"description": "Web store selling movie roles",
"main": "index.js",
"engines": {
"node": ">= 7.0.0"
},
"scripts": {
"build-client": "webpack",
"build-client-watch": "webpack -w",
"deploy": "git pull heroku master && webpack -p && git add -f public/bundle.js public/bundle.js.map && git commit --allow-empty -m 'Deploying' && git push heroku deploy:master",
"start": "node server",
"start-dev": "npm run build-client-watch & npm run start-server",
"start-server": "NODE_ENV='development' nodemon server -e html,js,scss --ignore public",
"test": "NODE_ENV='test' DATABASE_URL='postgres://localhost:5432/graceshopper-test' mocha ./**/*.spec.js --compilers js:babel-register --watch"
},
"author": "",
"license": "ISC",
"dependencies": {
"axios": "^0.15.3",
"bluebird": "^3.5.0",
"body-parser": "^1.16.1",
"chai-properties": "^1.2.1",
"chai-things": "^0.2.0",
"connect-session-sequelize": "^4.1.0",
"express": "^4.14.1",
"express-session": "^1.15.1",
"history": "^4.6.3",
"morgan": "^1.8.1",
"passport": "^0.3.2",
"passport-google-oauth": "^1.0.0",
"pg": "^6.1.2",
"pg-hstore": "^2.3.2",
"prop-types": "^15.5.8",
"react": "^15.4.2",
"react-dom": "^15.4.2",
"react-redux": "^5.0.2",
"react-router": "^4.1.1",
"react-router-dom": "^4.1.1",
"redux": "^3.6.0",
"redux-logger": "^2.8.1",
"redux-thunk": "^2.2.0",
"sequelize": "^4.3.1",
"socket.io": "^2.0.3",
"styled-components": "^2.1.1"
},
"devDependencies": {
"babel-core": "^6.22.1",
"babel-loader": "^6.2.10",
"babel-preset-es2015": "^6.22.0",
"babel-preset-react": "^6.22.0",
"babel-preset-stage-0": "^6.24.1",
"babel-register": "6.24.1",
"chai": "^3.5.0",
"chai-as-promised": "7.1.1",
"chai-enzyme": "0.8.0",
"chai-things": "0.2.0",
"css-loader": "^0.26.1",
"enzyme": "2.9.1",
"file-loader": "^0.11.2",
"mocha": "^3.3.0",
"node-sass": "^4.5.0",
"sass-loader": "^6.0.0",
"sinon": "2.4.1",
"sinon-as-promised": "4.0.3",
"style-loader": "^0.13.1",
"supertest": "^3.0.0",
"webpack": "^2.2.1"
}
}