This repository has been archived by the owner on Dec 10, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
98 lines (98 loc) · 3.2 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "course.thesis",
"version": "1.0.0",
"scripts": {
"start": "nodemon server",
"start:dev": "webpack-dev-server --inline --hot",
"heroku-postbuild": "webpack -p && knex migrate:latest",
"test": "NODE_ENV=test grunt test",
"build": "webpack --watch",
"db:local-start": "pg_ctl -D /usr/local/var/postgres -l /usr/local/var/postgres/server.log start && redis-server",
"db:stop": "pg_ctl -D /usr/local/var/postgres stop -s -m fast",
"db:init-dev": "grunt pgcreatedb:default && knex migrate:latest && knex seed:run",
"db:init-heroku": "knex migrate:latest",
"db:init-test": "NODE_ENV=localtest grunt pgcreatedb:default && knex migrate:latest --env NODE_ENV",
"chesstest": "node ./node_modules/mocha/bin/mocha",
"localtest": "NODE_ENV=localtest grunt test",
"mochatest": "NODE_ENV=localtest istanbul cover _mocha -- -R spec server/test/*.spec.js",
"seed-pgn": "node ./server/chess/convertPGN/fileParse_3.js"
},
"author": "Hack Reactor",
"license": "MIT",
"dependencies": {
"axios": "^0.16.1",
"babel-core": "^6.24.1",
"bcrypt-nodejs": "^0.0.3",
"bluebird": "^3.5.0",
"body-parser": "^1.17.1",
"bookshelf": "^0.10.3",
"config": "^1.26.1",
"connect-flash": "^0.1.1",
"connect-redis": "^3.2.0",
"cookie-parser": "^1.4.3",
"cors": "^2.8.3",
"ejs": "^2.5.6",
"express": "^4.15.2",
"express-session": "^1.15.1",
"grunt-pg": "https://github.com/watsoncj/grunt-pg.git",
"knex": "^0.12.9",
"material-ui": "^0.18.1",
"morgan": "^1.8.1",
"passport": "^0.3.2",
"passport-facebook": "^2.1.1",
"passport-google-oauth": "^1.0.0",
"passport-local": "^1.0.0",
"passport-twitter": "^1.0.4",
"passport.socketio": "^3.7.0",
"pg": "^6.1.5",
"react": "^15.4.2",
"react-countdown-clock": "^1.1.0",
"react-dom": "^15.4.2",
"react-redux": "^5.0.5",
"react-router-dom": "^4.1.1",
"react-scrollbar": "^0.5.1",
"react-social-icons": "^2.7.0",
"react-tap-event-plugin": "^2.0.1",
"redis": "^2.7.1",
"redux": "^3.6.0",
"redux-logger": "^3.0.6",
"redux-thunk": "^2.2.0",
"seamless-immutable": "^7.1.2",
"should": "^11.2.1",
"socket.io": "^2.0.1",
"socket.io-client": "^2.0.1",
"uuid": "^3.0.1",
"watson-developer-cloud": "^2.32.1"
},
"devDependencies": {
"babel-loader": "^7.0.0",
"babel-plugin-transform-es2015-modules-commonjs": "^6.24.0",
"babel-preset-latest": "^6.24.0",
"babel-preset-react": "^6.23.0",
"babel-preset-stage-2": "^6.24.1",
"chai": "^3.5.0",
"compression-webpack-plugin": "^0.4.0",
"css-loader": "^0.14.5",
"eslint": "^3.19.0",
"eslint-config-airbnb": "^15.0.1",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^5.0.3",
"eslint-plugin-react": "^7.0.1",
"grunt": "^0.4.5",
"grunt-cli": "^1.2.0",
"grunt-eslint": "^19.0.0",
"grunt-mocha-test": "^0.13.2",
"html-webpack-plugin": "^2.28.0",
"mocha": "^3.2.0",
"node-mocks-http": "^1.6.1",
"style-loader": "^0.18.1",
"supertest": "^3.0.0",
"webpack": "^2.3.2",
"webpack-dev-server": "^2.4.2"
},
"babel": {
"plugins": [
"transform-es2015-modules-commonjs"
]
}
}