-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.11 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
{
"name": "kanban",
"version": "1.0.0",
"description": "A Kanban Board app for managing boards and tasks",
"main": "build/app.js",
"scripts": {
"dev": "nodemon build/app.js",
"build": "rm -rf build/ && tsc",
"start": "node build/app.js"
},
"resolutions": {
"node": "node16"
},
"author": "Jeramiah Coffey",
"license": "ISC",
"type": "module",
"dependencies": {
"@types/node": "^18.11.9",
"axios": "^0.27.2",
"bcryptjs": "^2.4.3",
"cors": "^2.8.5",
"dotenv": "^16.0.2",
"express": "^4.18.1",
"express-async-errors": "^3.1.1",
"express-rate-limit": "^6.6.0",
"googleapis": "^108.0.0",
"helmet": "^6.0.0",
"http-status-codes": "^2.2.0",
"jsonwebtoken": "^8.5.1",
"mongoose": "^6.6.2",
"mongoose-id-validator": "^0.6.0",
"nodemailer": "^6.8.0",
"rate-limiter": "^0.2.0",
"xss-clean": "^0.1.1"
},
"devDependencies": {
"@types/cors": "^2.8.13",
"@types/express": "^4.17.16",
"@types/jsonwebtoken": "^9.0.1",
"@types/mongodb": "^4.0.7",
"morgan": "^1.10.0",
"nodemon": "^2.0.20",
"typescript": "^4.9.3"
}
}