This repository was archived by the owner on Apr 22, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
101 lines (101 loc) · 2.85 KB
/
package.json
File metadata and controls
101 lines (101 loc) · 2.85 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"name": "kitchenview",
"version": "1.0.0",
"description": "",
"main": "dist/index.js",
"scripts": {
"build": "gulp",
"start": "gulp && node dist/server/index.js",
"test": "snyk test && mocha",
"snyk-protect": "snyk protect",
"prepare": "npm run snyk-protect"
},
"author": "Tyler Schrock <tschrock123@gmail.com>",
"license": "MPL-2.0",
"dependencies": {
"base64url": "^3.0.1",
"body-parser": "^1.19.0",
"connect-session-sequelize": "^6.0.0",
"convict": "^5.1.0",
"cookie-parser": "^1.4.4",
"debug": "^4.1.1",
"express": "^4.17.1",
"express-session": "^1.16.2",
"http-errors": "^1.7.3",
"morgan": "^1.9.1",
"passport": "^0.4.0",
"passport-oauth2": "^1.5.0",
"pug": "^2.0.4",
"query-string": "^6.8.2",
"querybuilder-helper": "0.0.2-beta",
"reflect-metadata": "^0.1.13",
"request": "^2.88.0",
"request-promise-native": "^1.0.7",
"sequelize": "^5.17.0",
"sequelize-typescript": "^1.0.0",
"serve-favicon": "^2.5.0",
"snyk": "^1.221.1",
"winston": "^3.2.1",
"ws": "^7.1.2"
},
"devDependencies": {
"@types/bluebird": "^3.5.27",
"@types/body-parser": "^1.17.1",
"@types/browserify": "^12.0.36",
"@types/chai": "^4.2.0",
"@types/chai-as-promised": "^7.1.2",
"@types/convict": "^4.2.1",
"@types/cookie-parser": "^1.4.2",
"@types/debug": "^4.1.5",
"@types/express": "^4.17.1",
"@types/express-session": "^1.15.14",
"@types/gulp": "^4.0.6",
"@types/gulp-filter": "^3.0.33",
"@types/gulp-rename": "0.0.33",
"@types/gulp-sass": "^4.0.0",
"@types/gulp-sourcemaps": "0.0.32",
"@types/gulp-terser": "^1.2.0",
"@types/http-errors": "^1.6.2",
"@types/jquery": "^3.3.31",
"@types/morgan": "^1.7.37",
"@types/node": "^12.7.2",
"@types/passport": "^1.0.1",
"@types/passport-oauth2": "^1.4.8",
"@types/request": "^2.48.2",
"@types/request-promise-native": "^1.0.16",
"@types/serve-favicon": "^2.2.31",
"@types/validator": "^10.11.3",
"@types/vinyl-source-stream": "0.0.30",
"@types/ws": "^6.0.3",
"browserify": "^16.5.0",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"del": "^5.1.0",
"gulp": "^4.0.2",
"gulp-buffer": "0.0.2",
"gulp-filter": "^6.0.0",
"gulp-rename": "^1.4.0",
"gulp-sass": "^4.0.2",
"gulp-sourcemaps": "^2.6.5",
"gulp-terser": "^1.2.0",
"gulp-typescript": "^5.0.1",
"gulp-uglify": "^3.0.2",
"mocha": "^6.2.0",
"node-sass": "^4.12.0",
"ts-node": "^8.3.0",
"tsify": "^4.0.1",
"tslint": "^5.19.0",
"typescript": "^3.5.3",
"typescript-tslint-plugin": "^0.5.4",
"vinyl-source-stream": "^2.0.0"
},
"optionalDependencies": {
"mariadb": "^2.0.5",
"mysql2": "^1.6.1",
"pg": "^7.11.0",
"pg-hstore": "^2.3.3",
"sqlite3": "^4.0.9",
"tedious": "^6.2.0"
},
"snyk": true
}