This repository has been archived by the owner on Apr 1, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 33
/
package.json
74 lines (74 loc) · 2.44 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
{
"name": "webuild.sg",
"version": "2.19.32",
"homepage": "https://webuild.sg",
"keywords": "developer, designer, maker, engineer, open source, open events, open community",
"private": true,
"scripts": {
"start": "node app",
"debug": "node --inspect-brk app",
"build": "grunt",
"logs:staging": "rhc tail -o '-n 100' -a staging",
"logs:production": "rhc tail -o '-n 100' -a production",
"test": "standard --fix archives/*.js countdown/*.js lib/*.js app.js && grunt travis --verbose",
"restart:staging": "rhc app-restart --app staging",
"restart:production": "rhc app-restart --app production",
"restart": "npm run restart:staging && npm run restart:production",
"routine": "grunt cleanup && npm outdated && bower list && npm-check-updates -u && npm i && grunt && npm test && npm outdated",
"cov": "mocha test --recursive --require blanket --reporter html-cov > coverage.html",
"deploy:staging": "git push staging master && rhc app-force-stop --app staging && rhc deploy master --app staging",
"deploy:production": "git push production master && rhc app-force-stop --app production && rhc deploy master --app production",
"deploy": "npm run deploy:staging && npm run deploy:production"
},
"dependencies": {
"basic-auth": "^2.0.0",
"body-parser": "1.18.3",
"cli-color": "1.2.0",
"compression": "1.7.3",
"cors": "2.8.4",
"errorhandler": "1.5.0",
"express": "^5.0.0-alpha.6",
"firebase-admin": "^5.13.0",
"ical-generator": "1.0.2",
"jsonfile": "4.0.0",
"moment-timezone": "0.5.21",
"morgan": "^1.9.0",
"promise": "8.0.1",
"pug": "2.0.3",
"request": "2.87.0",
"tracer": "^0.9.1",
"webuild-events": "1.4.39",
"webuild-repos": "1.4.5"
},
"devDependencies": {
"standard": "11.0.1",
"blanket": "1.2.3",
"bower": "1.8.4",
"chai": "4.1.2",
"coveralls": "3.0.2",
"grunt": "1.0.3",
"grunt-bump": "0.8.0",
"grunt-cli": "1.2.0",
"grunt-contrib-clean": "1.1.0",
"grunt-contrib-csslint": "2.0.0",
"grunt-contrib-jshint": "1.1.0",
"grunt-contrib-uglify": "3.3.0",
"grunt-jsbeautifier": "0.2.13",
"grunt-jscs": "3.0.1",
"mocha": "5.2.0",
"mocha-lcov-reporter": "1.3.0",
"nconf": "0.10.0"
},
"engines": {
"node": "4.3.x"
},
"config": {
"blanket": {
"pattern": [
"archives/index.js",
"countdown/index.js"
],
"data-cover-never": "node_modules"
}
}
}