forked from gregorysyrkin/web
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.58 KB
/
package.json
File metadata and controls
81 lines (81 loc) · 2.58 KB
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
{
"name": "ctfight-web",
"version": "0.1.9",
"description": "CTFight site",
"main": "index.coffee",
"scripts": {
"watch": "NODE_ENV=dev DEBUG=ctfight:* gulp watch",
"compile": "gulp --production",
"production": "pm2 start index.coffee",
"update": "git stash && git pull && npm install && gulp --production && pm2 restart all",
"admin": "nodemon node_modules/mongo-express/app.js",
"docker": "cd install; chmod +x install_all.sh; ./install_all.sh",
"start": "DEBUG=ctfight:* nodemon index.coffee",
"test": "NODE_ENV=test mocha --compilers coffee:coffee-script/register --recursive ./test",
"coverage": "NODE_ENV=test mocha --require coffee-coverage/register-istanbul --compilers coffee:coffee-script/register --recursive ./test; mv coverage/coverage-coffee.json coverage/coverage.json;"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ctfight/ctfight-web.git"
},
"author": "CTFight team <https://github.com/ctfight>",
"license": "MIT",
"bugs": {
"url": "https://github.com/ctfight/ctfight-web/issues"
},
"homepage": "https://github.com/ctfight/ctfight-web#readme",
"devDependencies": {
"autoprefixer-core": "^5.2.1",
"basic-auth": "^1.0.3",
"bootstrap-styl": "^5.0.5",
"browser-sync": "^2.8.2",
"browserify": "^11.0.1",
"chai": "^3.2.0",
"codecov.io": "^0.1.6",
"coffeeify": "^1.1.0",
"debug": "^2.2.0",
"gulp": "^3.9.0",
"gulp-combine-media-queries": "^0.2.0",
"gulp-cssmin": "^0.1.7",
"gulp-if": "^1.2.5",
"gulp-nodemon": "^2.0.4",
"gulp-notify": "^2.2.0",
"gulp-plumber": "^1.0.1",
"gulp-postcss": "^5.1.10",
"gulp-rename": "^1.2.2",
"gulp-sourcemaps": "^1.5.2",
"gulp-streamify": "^1.0.0",
"gulp-stylus": "^2.0.6",
"gulp-uglify": "^1.2.0",
"gulp-yaml": "^0.2.4",
"humane-js": "^3.2.2",
"js-cookie": "^2.0.3",
"mocha": "^2.2.5",
"nib": "^1.1.0",
"normalize-styl": "^3.0.3",
"run-sequence": "^1.1.2",
"supertest": "^1.0.1",
"vinyl-source-stream": "^1.1.0",
"watchify": "^3.3.1",
"yargs": "^3.21.0"
},
"dependencies": {
"archiver": "^0.14.4",
"body-parser": "^1.13.3",
"coffee-script": "^1.9.3",
"cookie-parser": "^1.3.5",
"express": "^4.13.3",
"highlight.js": "^8.7.0",
"i18n-2": "^0.4.6",
"jade": "^1.11.0",
"jstransformer-marked": "^1.0.1",
"marked": "^0.3.5",
"mkdirp": "^0.5.1",
"mongo-express": "^0.21.0",
"mongoose": "^4.1.3",
"morgan": "https://github.com/Nitive/morgan.git",
"multer": "^1.0.3",
"node-bin": "^0.12.9",
"pm2": "^1.0.0"
}
}