-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 801 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 801 Bytes
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
{
"name": "taskly-backend",
"version": "1.0.0",
"description": "",
"license": "ISC",
"author": "rahel",
"type": "module",
"main": "app.js",
"scripts": {
"start": "node app.js",
"dev": "nodemon app.js"
},
"dependencies": {
"@arcjet/inspect": "^1.0.0-beta.9",
"@arcjet/node": "^1.0.0-beta.9",
"bcryptjs": "^3.0.2",
"cookie-parser": "^1.4.7",
"cors": "^2.8.5",
"debug": "^4.4.1",
"dotenv": "^17.2.0",
"express": "^5.1.0",
"jsonwebtoken": "^9.0.2",
"mongodb": "^6.17.0",
"mongoose": "^8.16.4",
"morgan": "^1.10.1"
},
"devDependencies": {
"@eslint/js": "^9.31.0",
"eslint": "^9.31.0",
"globals": "^16.3.0",
"jest": "^30.0.4",
"nodemon": "^3.1.10",
"prettier": "^3.6.2",
"supertest": "^7.1.3"
}
}