-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathpackage.json
94 lines (94 loc) · 2.94 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "EventBackend",
"license": "MIT",
"description": "EventBackend Conference Info.",
"version": "1.0.0",
"private": true,
"main": "app/server.js",
"scripts": {
"bower": "bower install",
"postinstall": "grunt release",
"start": "node app/server.js",
"pretest": "npm install",
"test": "mocha -R spec",
"test-ui": "karma start karma.conf.js",
"test-ui-single-run": "karma start karma.conf.js --single-run",
"unittest-frontend-teamcity": "karma start karma-teamcity.conf.js --single-run",
"unittest-backend-teamcity": "mocha -R mocha-teamcity-reporter",
"coverage-teamcity": "istanbul cover node_modules/mocha/bin/_mocha",
"preupdate-webdriver": "npm install",
"update-webdriver": "webdriver-manager update",
"pree2e": "npm run update-webdriver",
"e2e": "protractor e2e-test/protractor.conf.js",
"eslint": "eslint app/**/*.js test/**/*.js public/app/**/*.js",
"eslint-report": "eslint app/**/*.js test/**/*.js public/app/**/*.js -f node_modules/eslint-html-reporter/reporter.js -o qa/eslint-report.html",
"jsdoc": "node_modules/.bin/jsdoc app/ public-html/production -d docs",
"snyk-protect": "snyk protect",
"commented-prepare": "npm run snyk-protect"
},
"dependencies": {
"async": "^1.5.2",
"basic-auth": "^1.0.3",
"baucis": "1.6.8",
"baucis-openapi3": "^0.2.4",
"baucis-swagger": "1.1.2",
"baucis-swagger2": "^0.3.18",
"bcrypt-nodejs": "0.0.3",
"body-parser": "^1.19.0",
"bower": "^1.8.8",
"compression": "^1.7.4",
"connect-mongo": "^1.1.0",
"consul": "^0.34.1",
"cookie-parser": "^1.4.4",
"event-stream": "^3.3.2",
"express": "^4.17.1",
"express-session": "^1.16.2",
"gridfs-stream": "^1.1.1",
"grunt": "^1.0.4",
"grunt-cli": "^1.3.2",
"grunt-contrib-clean": "^1.0.0",
"grunt-contrib-copy": "^1.0.0",
"grunt-contrib-uglify": "^3.3.0",
"grunt-mocha-test": "^0.12.7",
"helmet": "^3.18.0",
"jimp": "^0.6.4",
"jshint-teamcity": "^1.1.1",
"mocha": "^6.1.4",
"mongoose": "~4.4.10",
"mongoose-geojson": "0.0.4",
"morgan": "^1.9.1",
"multer": "^1.1.0",
"newrelic": "^5.10.0",
"passport": "^0.3.2",
"passport-facebook": "^2.1.0",
"passport-github2": "^0.1.11",
"passport-google-oauth": "^1.0.0",
"passport-http": "^0.3.0",
"passport-http-bearer": "^1.0.1",
"passport-local": "^1.0.0",
"passport-localapikey-update": "^0.5.0",
"passport-twitter": "^1.0.4",
"passport-windowslive": "^1.0.2",
"pkgcloud": "^1.5.0",
"prom-client": "^3.4.1",
"q": "^1.5.1",
"tmp": "^0.0.33",
"xlsx": "^0.8.0"
},
"devDependencies": {
"deco": "~0.12.3",
"eslint": "^6.0.1",
"eslint-html-reporter": "^0.7.3",
"expect.js": "~0.3.1",
"istanbul": "^0.4.5",
"jasmine": "^3.4.0",
"request": "^2.88.0",
"shelljs": "^0.8.3",
"snyk": "^1.193.0"
},
"engines": {
"node": "8.x",
"npm": "5.x"
},
"snyk": true
}