-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 2.27 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": "exquisite_tail",
"version": "1.0.0",
"repository": "https://github.com/Kiro705/exquisite_tail",
"description": "A Storytelling Mashup Game",
"engines": {
"node": ">= 7.0.0"
},
"main": "index.js",
"scripts": {
"build-client": "webpack",
"build-client-watch": "webpack -w",
"deploy": "git checkout -b deploy && webpack -p && git add -f public/bundle.js public/bundle.js.map && git commit --allow-empty -m 'Deploying' && git push --force heroku deploy:master && git checkout master && git branch -D deploy",
"start": "node server",
"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/exquisite-tail-test' mocha ./**/mocha-tests/*.spec.* --compilers js:babel-register -r jsdom-global/register"
},
"author": "",
"license": "ISC",
"dependencies": {
"axios": "^0.15.3",
"body-parser": "^1.16.1",
"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-bootstrap": "^0.32.1",
"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"
},
"devDependencies": {
"axios-mock-adapter": "^1.9.0",
"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",
"css-loader": "^0.26.1",
"enzyme": "^2.8.2",
"file-loader": "^0.11.2",
"jsdom": "11.6.2",
"jsdom-global": "3.0.2",
"mocha": "^3.3.0",
"node-sass": "^4.5.0",
"nodemon": "^1.12.1",
"react-test-renderer": "^15.6.1",
"redux-mock-store": "^1.2.3",
"sass-loader": "^6.0.0",
"style-loader": "^0.13.1",
"supertest": "^3.0.0",
"webpack": "^2.2.1"
}
}