-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
70 lines (65 loc) · 1.71 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
{
"name": "agora",
"version": "0.0.1",
"private": true,
"dependencies": {
"express": "4.x",
"express-session": "~1.5.1",
"winston": "~0.7",
"ejs": ">= 0.8.3",
"serve-favicon": "2.x",
"cookie-parser": "~1.1",
"body-parser": "~1.3",
"mongoose": "~4.0",
"passport": "~0.2",
"passport-local": "~1.0",
"passport-saml": "git+https://github.com/grnet/passport-saml.git#grnet",
"moment": "~2.7",
"jwt-simple": "~0.2",
"connect-flash" : "~0.1.1",
"bcrypt-nodejs" : "latest",
"grunt-mongoimport": "*",
"grunt": "*",
"grunt-cli": "*",
"bower": "*",
"prompt": "*",
"nopt": "*",
"async": "*",
"q": "1.0.x",
"xml2js": "0.4.x",
"xml-crypto": "0.1.x",
"xmldom": "0.1.x",
"xmlbuilder": "~2.4",
"xml-encryption": "~0.7",
"sax": "*",
"request": "*",
"sanitize-html": "*"
},
"devDependencies": {
"js-yaml": "*",
"karma": "~0.12",
"karma-cli": "*",
"karma-firefox-launcher": "~0.1",
"karma-chrome-launcher": "~0.1",
"karma-jasmine": "~0.1",
"protractor": "~1.3",
"karma-junit-reporter": "^0.2.2"
},
"scripts": {
"postinstall": "bower install",
"prestart": "npm install",
"start": "node backend/app.js",
"debug": "node debug backend/app.js",
"pretest": "npm install",
"test": "karma start public/karma.conf.js",
"test-single-run": "karma start public/karma.conf.js --single-run",
"preupdate-webdriver": "npm install",
"update-webdriver": "webdriver-manager update",
"preprotractor": "npm run update-webdriver",
"protractor": "protractor e2e-tests/protractor-conf.js"
},
"main": "app.js",
"repository": "",
"author": "",
"license": ""
}