-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.29 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
{
"name": "@cs571/badgerauth",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "npx tsc",
"start": "node dist/index.js",
"dev": "concurrently \"npx tsc --watch\" \"nodemon -q dist/index.js\"",
"lint": "eslint src"
},
"keywords": [],
"author": "",
"license": "MIT",
"dependencies": {
"@cs571/api-framework": "0.4.4",
"cookie-parser": "^1.4.6",
"dotenv": "^16.3.1",
"errorhandler": "^1.5.1",
"express": "^4.19.2",
"express-rate-limit": "^6.7.0",
"jsonwebtoken": "^9.0.0",
"morgan": "^1.10.0",
"mysql2": "^3.6.0",
"nodemailer": "^6.9.4",
"sequelize": "^6.32.1"
},
"devDependencies": {
"@types/cookie": "0.6.0",
"@types/cookie-parser": "^1.4.3",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/express-rate-limit": "^6.0.0",
"@types/jsonwebtoken": "^9.0.2",
"@types/morgan": "^1.9.4",
"@types/node": "^20.3.3",
"@types/nodemailer": "^6.4.9",
"@types/sequelize": "^4.28.15",
"@typescript-eslint/eslint-plugin": "^5.60.1",
"@typescript-eslint/parser": "^5.60.1",
"concurrently": "^8.2.0",
"eslint": "^8.44.0",
"nodemon": "^2.0.22",
"typescript": "^5.1.6"
},
"overrides": {
"cookie": "0.6.0",
"@types/cookie": "0.6.0"
}
}