-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpackage.json
60 lines (60 loc) · 1.73 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
{
"name": "mastermind",
"version": "1.0.0",
"description": "",
"main": "server.js",
"scripts": {
"start": "node server/server.js",
"test": "mocha --bail --reporter nyan test/ServerSpec.js",
"heroku-postinstall": "webpack -p --config ./webpack.config.js --progress",
"webpack": "webpack -p --config ./webpack.config.js --progress"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Swanky-Ibises/MasterMind.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/Swanky-Ibises/MasterMind/issues"
},
"homepage": "https://github.com/Swanky-Ibises/MasterMind#readme",
"dependencies": {
"bcrypt-nodejs": "0.0.3",
"bluebird": "^3.3.4",
"body-parser": "^1.16.0",
"bootstrap": "^3.3.7",
"eslint-config-hackreactor": "git://github.com/reactorcore/eslint-config-hackreactor",
"express": "^4.14.0",
"express-session": "^1.13.0",
"grunt": "^0.4.4",
"grunt-contrib-concat": "^1.0.0",
"grunt-contrib-cssmin": "^1.0.1",
"grunt-contrib-uglify": "^1.0.1",
"grunt-contrib-watch": "^1.0.0",
"grunt-eslint": "^18.0.0",
"grunt-mocha-test": "^0.12.7",
"grunt-nodemon": "^0.4.1",
"grunt-shell": "^1.2.1",
"jquery": "^2.2.1",
"lodash": "^4.6.1",
"mongoose": "^4.7.7",
"morgan": "^1.1.1",
"react": "^0.14.7",
"react-dom": "^0.14.7",
"react-router": "^3.0.2",
"react-router-bootstrap": "^0.23.1",
"webpack": "^1.14.0",
"request": "^2.34.0"
},
"devDependencies": {
"babel-cli": "^6.6.5",
"babel-core": "^6.22.1",
"babel-loader": "^6.2.10",
"babel-preset-es2015": "^6.22.0",
"babel-preset-react": "^6.22.0",
"chai": "^3.5.0",
"mocha": "2.3.3",
"sinon": "1.17.3"
}
}