-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.28 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.28 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
{
"name": "moby-log",
"version": "1.0.0",
"description": "a simple event logging and exporting API",
"main": "server.js",
"scripts": {
"dev": "ts-node-dev server.ts",
"debug": "ts-node-dev --inspect --respawn server.ts",
"test": "echo \"Error: no test specified\" && exit 1",
"build": "tsc -p tsconfig.json"
},
"author": "James Jacoby",
"license": "MIT",
"devDependencies": {
"@types/bcrypt": "^6.0.0",
"@types/cors": "^2.8.10",
"@types/express": "^4.17.11",
"@types/express-session": "^1.18.2",
"@types/passport": "^1.0.17",
"@types/passport-jwt": "^4.0.1",
"@types/passport-local": "^1.0.38",
"@types/uuid": "^10.0.0",
"ts-node-dev": "^1.1.6",
"typescript": "^4.2.4"
},
"dependencies": {
"@sendgrid/mail": "^7.7.0",
"@types/adm-zip": "^0.5.0",
"adm-zip": "^0.5.9",
"bcrypt": "^6.0.0",
"connect-mongo": "^5.1.0",
"cors": "^2.8.5",
"csv-builder": "^1.0.0",
"dotenv": "^9.0.0",
"ejs": "^3.1.8",
"express": "^4.17.1",
"express-basic-auth": "^1.2.0",
"express-session": "^1.18.2",
"express-validator": "^7.2.1",
"jsonwebtoken": "^9.0.2",
"mongoose": "^6.0.7",
"passport": "^0.7.0",
"passport-jwt": "^4.0.1",
"passport-local": "^1.0.0",
"uuid": "^11.1.0"
}
}