-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.38 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
51
52
53
54
55
56
{
"name": "task-manager-service",
"version": "1.0.0",
"description": "RESTful API for the Task Manager App",
"type": "module",
"main": "index.js",
"scripts": {
"build": "rimraf dist && npx tsc",
"prestart": "npm run build",
"start": "node dist/index.js",
"predev": "npm run build",
"dev": "concurrently \"npx tsc -w\" \"nodemon dist/index.js\"",
"test": "vitest --root src/",
"test:cov": "vitest run --coverage"
},
"keywords": [
"Restful",
"api",
"node",
"express",
"typescript",
"vitest",
"supertest"
],
"author": "vitalinosilva",
"license": "ISC",
"devDependencies": {
"@faker-js/faker": "^7.6.0",
"@types/cors": "^2.8.13",
"@types/express": "^4.17.17",
"@types/node": "^18.16.1",
"@types/supertest": "^2.0.12",
"@types/swagger-jsdoc": "^6.0.1",
"@types/swagger-ui-express": "^4.1.3",
"@types/uuid": "^9.0.1",
"@types/uuid4": "^2.0.0",
"@vitest/coverage-c8": "^0.30.1",
"concurrently": "^8.0.1",
"nodemon": "^2.0.22",
"rimraf": "^5.0.0",
"supertest": "^6.3.3",
"typescript": "^5.0.4",
"vitest": "^0.30.1"
},
"dependencies": {
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"helmet": "^6.1.5",
"joi": "^17.9.2",
"moment": "^2.29.4",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^4.6.2",
"uuid": "^9.0.0"
}
}