-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.36 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
{
"name": "SpeechHacks",
"version": "2.0.0",
"description": "HackingEDU project",
"dependencies": {
"body-parser": "~1.14.1",
"cookie-parser": "^1.4.0",
"csurf": "^1.8.3",
"ejs": "^2.3.4",
"errorhandler": "^1.4.2",
"express": "~4.13.3",
"express-rate-limit": "^2.0.2",
"express-secure-only": "^0.2.1",
"helmet": "^0.13.0",
"i18next": "^1.10.6",
"morgan": "^1.6.1",
"request": "^2.67.0",
"vcap_services": "^0.1.7",
"watson-developer-cloud": "^0.10.6"
},
"repository": {
"type": "git",
"url": "https://github.com/vanshady/HackingEDU"
},
"author": "Minwei Xu",
"browserify-shim": {
"jquery": "global:jQuery"
},
"browserify": {
"transform": [
"browserify-shim"
]
},
"contributors": [
{
"name": "Minwei Xu",
"email": "[email protected]"
},
{
"name": "Dhanush Patel"
},
{
"name": "Raj Bhanushali"
}
],
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/vanshady/HackingEDU/issues"
},
"scripts": {
"start": "node app.js",
"build": "browserify src/index.js | uglifyjs -nc > public/js/index.js",
"watch": "watchify -v -d -o public/js/index.js src/index.js"
},
"devDependencies": {
"browserify": "^11.2.0",
"browserify-shim": "^3.8.9",
"watchify": "^3.2.3",
"uglifyjs": "^2.4.10"
}
}