-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
53 lines (53 loc) · 1.51 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
{
"name": "proud-heart",
"version": "1.0.0",
"description": "My app description",
"scripts": {
"build": "npm-run-all build:*",
"build:js": "browserify app/main.js -t [ babelify --presets [es2015 react] ] -o public/js/bundle.js",
"postinstall": "npm run build",
"start_houndify": "node hound_server.js",
"start": "node server.js",
"watch": "npm-run-all --parallel watch:*",
"watch:js": "watchify app/main.js -t [ babelify --presets [es2015 react] ] -v -o public/js/bundle.js"
},
"dependencies": {
"babel-core": "^6.7.2",
"babel-polyfill": "^6.7.2",
"babel-preset-es2015": "^6.6.0",
"babelify": "^7.2.0",
"body-parser": "^1.15.2",
"houndify": "file:houndify-2.1.0.tgz",
"minimist": "1.2.0",
"wav": "1.0.0",
"browserify": "^13.0.0",
"compression": "^1.6.2",
"cookie-parser": "^1.4.1",
"dotenv": "^2.0.0",
"express": "^4.13.4",
"express-handlebars": "^3.0.0",
"express-validator": "^2.20.4",
"morgan": "^1.7.0",
"nodemailer": "^2.3.0",
"nodemon": "^1.9.1",
"npm-run-all": "^1.8.0",
"react": "^15.1.0",
"react-dom": "^15.1.0",
"react-redux": "4.4.1",
"react-router": "^2.4.0",
"redux": "^3.3.1",
"redux-logger": "^2.6.1",
"redux-promise": "^0.5.3",
"redux-thunk": "^2.0.1",
"watchify": "^3.7.0",
"whatwg-fetch": "^0.11.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1"
},
"engines": {
"node": "6.1.0"
}
}