-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.6 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
{
"name": "halfLifeFinalProject",
"version": "0.1.0",
"scripts": {
"go": "npm run watch && npm run dev",
"deploy": "git push origin master && git push heroku master",
"dev": "NODE_ENV=development node --use_strict server.js",
"killmongo": "bash kill.sh mongo",
"postinstall": "touch ./config/secrets.js",
"start": "node --use_strict server.js",
"stop": "bash kill.sh",
"watch": "npm run watch-js && npm run watch-css && echo '\n\n===== watching js and scss files in src/, writing changes to dist/ =====\n\n'&",
"watch-js": "./node_modules/.bin/watchify src/scripts/app.js --debug --verbose --transform babelify -o dist/assets/js/app.js&",
"watch-css": "./node_modules/.bin/node-sass -w --output-style compressed src/styles/style.scss dist/assets/css/style.css&"
},
"browserify": {
"transform": [
[
"babelify",
{
"presets": [
"es2015",
"react"
]
}
]
]
},
"keywords": [
"babel",
"build",
"scss",
"node"
],
"license": "MIT",
"devDependencies": {
"babel-preset-es2015": "^6.9.0",
"babel-preset-react": "^6.5.0",
"babelify": "^7.3.0",
"node-sass": "^3.7.0",
"uglifyjs": "^2.4.10",
"watchify": "^3.7.0"
},
"dependencies": {
"backbone": "^1.3.3",
"body-parser": "^1.15.2",
"cookie-parser": "^1.4.3",
"ejs": "^2.4.2",
"express": "^4.14.0",
"express-session": "^1.14.0",
"jquery": "^3.0.0",
"mongoose": "^4.5.3",
"passport": "^0.3.2",
"passport-local": "^1.0.0",
"react": "^15.1.0",
"react-dom": "^15.1.0"
}
}