-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
63 lines (63 loc) · 1.77 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
{
"name": "pluribus",
"version": "1.0.0",
"description": "",
"main": "index.js",
"engines": {
"node": "4.4.3"
},
"scripts": {
"start": "node ./server/server.js",
"webpack:deploy": "NODE_ENV=production webpack --config webpack.prod.config.js --colors",
"heroku-postbuild": "npm run webpack:deploy",
"test:client": "mocha client/app/test/* --compilers js:babel-register --recursive",
"test:watch": "npm test -- --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/buergerhackers/pluribus.git"
},
"author": "Mark Keith, Nick Vinson, Todd Bontrager",
"license": "MIT",
"bugs": {
"url": "https://github.com/buergerhackers/pluribus/issues"
},
"homepage": "https://github.com/buergerhackers/pluribus",
"dependencies": {
"babel-core": "^6.7.7",
"babel-loader": "^6.2.4",
"babel-preset-es2015": "^6.6.0",
"babel-preset-react": "^6.5.0",
"babel-preset-react-hmre": "^1.1.1",
"babel-preset-stage-0": "^6.5.0",
"babel-register": "^6.8.0",
"body-parser": "^1.15.0",
"bower": "^1.7.9",
"chai": "^3.5.0",
"dotenv": "^2.0.0",
"express": "^4.13.4",
"express-session": "^1.13.0",
"grant-express": "^3.6.1",
"html-webpack-plugin": "^2.16.1",
"material-ui": "^0.15.0-beta.2",
"mysql": "^2.10.2",
"purest": "^2.0.1",
"react": "^15.0.2",
"react-dom": "^15.0.2",
"react-redux": "^4.4.5",
"react-tap-event-plugin": "^1.0.0",
"redux": "^3.5.2",
"sequelize": "^3.22.0",
"socket.io": "^1.4.6",
"webpack": "^1.13.0"
},
"devDependencies": {
"enzyme": "^2.2.0",
"expect": "^1.19.0",
"mocha": "^2.4.5",
"node-fetch": "^1.5.2",
"react-addons-test-utils": "^15.0.2",
"redux-devtools": "^3.2.0",
"supertest": "^1.2.0"
}
}