-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
71 lines (71 loc) · 2.02 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
{
"name": "sernjs",
"version": "1.0.0",
"description": "A Boilerplate for SERN stack apps",
"main": "app.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "./node_modules/.bin/webpack -p --progress --colors",
"dev": "./node_modules/.bin/webpack -d --progress --colors --watch",
"postinstall": "bash ./scripts/postinstall.sh",
"c": "node console.js",
"start": "nf start -j Procfile.dev"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dannyvassallo/sernjs.git"
},
"author": "Danny Vassallo",
"license": "ISC",
"bugs": {
"url": "https://github.com/dannyvassallo/sernjs/issues"
},
"homepage": "https://github.com/dannyvassallo/sernjs#readme",
"dependencies": {
"ajax-promise": "^0.8.1",
"babel-loader": "^6.2.4",
"babel-plugin-transform-object-rest-spread": "^6.8.0",
"babel-preset-es2015": "^6.13.2",
"babel-preset-react": "^6.11.1",
"bcrypt-nodejs": "0.0.3",
"body-parser": "^1.15.2",
"cookie-encrypter": "^0.1.1",
"cookie-parser": "^1.4.3",
"css-loader": "^0.23.1",
"express": "^4.14.0",
"express-session": "^1.14.1",
"extract-text-webpack-plugin": "^1.0.1",
"file-loader": "^0.9.0",
"fn": "^0.2.0",
"foreman": "^1.4.1",
"jquery": "^3.1.0",
"lodash": "^4.15.0",
"marked": "^0.3.6",
"material-ui": "^0.15.4",
"morgan": "^1.7.0",
"node-sass": "^3.8.0",
"passport": "^0.3.2",
"passport-local": "^1.0.0",
"path": "^0.12.7",
"pg": "^6.1.0",
"pg-hstore": "^2.3.2",
"pretty-error": "^2.0.0",
"react": "^15.3.0",
"react-dom": "^15.3.0",
"react-router": "^2.6.1",
"react-tap-event-plugin": "^1.0.0",
"redux": "^3.5.2",
"reload": "^1.0.1",
"sass-loader": "^4.0.0",
"sequelize": "^3.24.0",
"sequelize-cli": "^2.4.0",
"style-loader": "^0.13.1",
"url-loader": "^0.5.7",
"watch": "^0.19.1",
"webpack": "^1.13.1",
"whatwg-fetch": "^1.0.0"
},
"devDependencies": {
"nodemon": "^1.10.0"
}
}