-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
93 lines (93 loc) · 3.12 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "site_template",
"version": "0.1.0",
"scripts": {
"go": "npm run watch && npm run dev",
"deploy": "git push origin master && git push heroku master",
"dev": "cp -f defineEnvironmentVars.js setEnvironmentVars.js | NODE_ENV=development nodemon --watch server --watch server.js /server.js ",
"killmongo": "bash kill.sh mongo",
"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_ENV=development ./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&",
"build": "echo '\n\n===== building js and scss files for production =====\n\n' && npm run hide-sensitive && npm run build-js && npm run build-css",
"hide-sensitive": "echo 'exports.setEnvironmentVariables = function() {}' > setEnvironmentVars.js",
"build-js": "NODE_ENV=production browserify -i setEnvironmentVars.js src/scripts/app.js --transform babelify | uglifyjs -c > dist/assets/js/app.js ",
"build-css": "node-sass --output-style compressed src/styles/style.scss dist/assets/css/style.css",
"git": "npm run hide-sensitive && npm run build && npm run addToGit",
"addToGit": "git add ."
},
"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",
"browserify": "^14.4.0",
"morgan": "^1.8.1",
"node-sass": "^3.7.0",
"nodemon": "^1.11.0",
"uglify-js": "^3.0.20",
"uglifyify": "^4.0.2",
"watchify": "^3.7.0"
},
"dependencies": {
"axios": "^0.16.1",
"backbone": "^1.3.3",
"bcrypt": "^1.0.2",
"body-parser": "^1.15.2",
"cookie-parser": "^1.4.3",
"ejs": "^2.4.2",
"email-verification": "^0.4.6",
"emailjs": "^1.0.10",
"express": "^4.14.0",
"express-history-api-fallback": "^2.2.1",
"express-session": "^1.14.0",
"filestack-js": "^0.7.0",
"jquery": "^3.0.0",
"mailgun-js": "^0.11.2",
"mongoose": "^4.10.4",
"morgan": "^1.8.1",
"nodemailer": "^4.0.1",
"nodemon": "^1.11.0",
"passport": "^0.3.2",
"passport-jwt": "^2.2.1",
"passport-local": "^1.0.0",
"prop-types": "^15.5.10",
"react": "^15.1.0",
"react-cookie": "^2.0.7",
"react-dom": "^15.1.0",
"react-ga": "^2.2.0",
"react-redux": "^5.0.5",
"react-router": "^4.1.1",
"react-router-dom": "^4.1.1",
"react-thunk": "^1.0.0",
"react-toolbox": "^2.0.0-beta.12",
"redux": "^3.6.0",
"redux-form": "^6.7.0",
"redux-thunk": "^2.2.0",
"semantic-ui-react": "^0.68.5",
"serve-static": "^1.12.3",
"universal-cookie": "^2.0.8",
"xoauth2": "^1.2.0"
}
}