-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
79 lines (79 loc) · 3.19 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
{
"name": "Bomberman",
"scripts": {
"start": "NODE_ENV=production node serve/index.js",
"test": "gulp test",
"build": "gulp build",
"postinstall": "bower i && gulp build --production",
"crt-generate-local": "npm run _crt-clean-local && sudo openssl req -x509 -nodes -days 365 -newkey rsa:2048 -keyout config/nginx/ssl/nginx-bombercat.key -out config/nginx/ssl/nginx-bombercat.crt",
"_crt-clean-local": "sudo rm -rf config/nginx/ssl/nginx-bombercat.key config/nginx/ssl/nginx-bombercat.crt",
"deploy-nginx-config": "npm run _nginx-clean-config && npm run _nginx-copy-config && npm run _nginx-symbolic-link && npm run _nginx-restart",
"_nginx-copy-config": "sudo cp -R config/nginx/conf.d/ /etc/nginx && sudo cp -R config/nginx/sites-available/ /etc/nginx",
"_nginx-symbolic-link": "sudo ln -s /etc/nginx/sites-available/bombercat.conf /etc/nginx/sites-enabled/bombercat.conf && sudo ln -s /etc/nginx/sites-available/redirect-bombercat.conf /etc/nginx/sites-enabled/redirect-bombercat.conf",
"_nginx-clean-config": "sudo rm -rf /etc/nginx/confi.d/bombercat-upstream.conf /etc/nginx/sites-available/bombercat.conf /etc/nginx/sites-available/redirect-bombercat.conf /etc/nginx/sites-enabled/bombercat.conf /etc/nginx/sites-enabled/redirect-bombercat.conf",
"deploy-nginx-local-crt": "npm run _nginx-clean-crt && npm run _nginx-copy-crt && npm run _nginx-restart",
"_nginx-copy-crt": "sudo cp -R config/nginx/ssl/ /etc/nginx",
"_nginx-clean-crt": "sudo rm -rf /etc/nginx/ssl/nginx-bombercat.crt /etc/nginx/ssl/nginx-bombercat.key",
"_nginx-restart": "sudo service nginx restart"
},
"engines": {
"node": "~5.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/julesGoullee/bomberman.git"
},
"readmeFilename": "README.md",
"readme": "Bomberman",
"version": "0.0.1",
"dependencies": {
"babel-core": "^6.2.0",
"babel-loader": "^6.2.0",
"babel-preset-es2015": "^6.1.18",
"bower": "^1.6.5",
"compression": "^1.6.0",
"connect-mongo": "^0.8.2",
"cookie-parser": "^1.4.0",
"express": "^4.13.3",
"express-session": "^1.12.1",
"gulp": "^3.9.0",
"gulp-concat": "^2.6.0",
"gulp-load-plugins": "^1.1.0",
"gulp-rename": "^1.2.2",
"gulp-rimraf": "^0.2.0",
"gulp-util": "^3.0.7",
"inject-loader": "^2.0.1",
"kerberos": "0.0.17",
"merge-stream": "^1.0.0",
"mongoose": "^4.2.5",
"morgan": "^1.6.1",
"passport": "^0.3.2",
"passport-facebook-token": "^3.0.5",
"run-sequence": "^1.1.4",
"serve-favicon": "^2.3.0",
"simple-node-logger": "^0.92.21",
"socket.io": "^1.3.7",
"universal-analytics": "^0.3.9",
"webpack": "^1.12.4"
},
"devDependencies": {
"chai": "^3.4.1",
"expect.js": "^0.3.1",
"gulp-jasmine": "^2.2.1",
"gulp-jshint": "^2.0.0",
"gulp-mocha": "^2.1.3",
"jasmine-core": "^2.3.4",
"jshint": "^2.8.0",
"jshint-stylish": "^2.0.1",
"karma": "^0.13.15",
"karma-jasmine": "^0.3.6",
"karma-phantomjs-launcher": "^0.2.1",
"karma-ubuntu-reporter": "^0.0.3",
"karma-webpack": "^1.7.0",
"mock-require": "^1.2.0",
"phantomjs": "^1.9.18",
"sinon": "^1.17.2",
"sinon-chai": "^2.8.0"
},
"license": "MIT"
}