-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
61 lines (61 loc) · 1.56 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
{
"name": "boiler",
"version": "1.0.0",
"description": "Personal project boilerplate",
"main": "index.js",
"directories": {
"test": "mocha tests/*.test.js"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "webpack -w & nodemon server/index.js",
"build": "webpack",
"db-init": "pg-init boiler",
"postinstall": "npm run db-init",
"seed": "node server/db/seed.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sbwheeler/Boiler.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/sbwheeler/Boiler/issues"
},
"homepage": "https://github.com/sbwheeler/Boiler#readme",
"dependencies": {
"axios": "^0.15.3",
"babel": "^6.23.0",
"babel-preset-stage-2": "^6.22.0",
"body-parser": "^1.17.1",
"express": "^4.15.2",
"express-session": "^1.15.2",
"fs-misc": "^2.0.0",
"lodash": "^4.17.4",
"passport": "^0.3.2",
"passport-google-oauth": "^1.0.0",
"pg": "^6.1.5",
"react": "^15.4.2",
"react-dom": "^15.4.2",
"react-redux": "^5.0.3",
"react-router": "^3.0.0",
"redux": "^3.6.0",
"redux-thunk": "^2.2.0",
"sequelize": "^3.30.2",
"webpack": "^2.2.1"
},
"devDependencies": {
"babel-core": "^6.24.0",
"babel-loader": "^6.4.1",
"babel-preset-es2015": "^6.24.0",
"babel-preset-react": "^6.23.0",
"chai": "^3.5.0",
"chalk": "^1.1.3",
"mocha": "^3.2.0",
"morgan": "^1.8.1",
"nodemon": "^1.11.0",
"redux-logger": "^2.8.2",
"volleyball": "^1.4.1"
}
}