-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 839 Bytes
/
Copy pathpackage.json
File metadata and controls
33 lines (33 loc) · 839 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
{
"dependencies": {
"@faker-js/faker": "^10.0.0",
"express": "^5.1.0",
"mongoose": "^8.18.2",
"uuid": "^13.0.0"
},
"devDependencies": {
"@types/express": "^5.0.3",
"@types/lodash": "^4.17.20",
"@types/mongoose": "^5.11.96",
"@types/prompts": "^2.4.9",
"@types/uuid": "^10.0.0",
"nodemon": "^3.1.10",
"ts-node": "^10.9.2",
"typescript": "^5.9.2"
},
"name": "taskapi",
"version": "1.0.0",
"type": "module",
"description": "",
"main": "src/app.ts",
"scripts": {
"dev": "ts-node src/app.ts",
"deleteUser": "ts-node src/controllers/deleteUsers.ts",
"cache": "rimraf node_modules/.cache/ts-node-dev",
"listUser": "ts-node src/controllers/listUsers.ts",
"deleteJson": "rimraf src/data/users.json"
},
"keywords": [],
"author": "",
"license": "ISC"
}