-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.63 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.63 KB
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
{
"name": "task-manager-api",
"version": "1.0.0",
"description": "To implement REST API (CRUD)",
"main": "src/server.ts",
"scripts": {
"test:unit": "vitest run src",
"test:integration": "vitest run tests/integration",
"test:coverage": "vitest run --coverage",
"test": "npm run test:unit && npm run test:integration && npm run test:coverage",
"test:ui": "vitest --ui",
"dev": "ts-node-dev --respawn src/server.ts",
"build": "tsc",
"start": "node dist/server.js",
"k6:build": "tsc --project tests/loadTests/tsconfig.json",
"test:load": "FILE=${FILE:-index.js} && concurrently \"npm run dev\" \"wait-on --timeout 30000 --retry 5 http://localhost:3000 && npm run k6:build && k6 run tests/loadTests/dist/$FILE\""
},
"engines": {
"node": ">=20.12.1",
"npm": ">=10.5.0"
},
"engineStrict": true,
"repository": {
"type": "git",
"url": "git+https://github.com/godabavinay/Task-Manager-API.git"
},
"keywords": [
"REST-API"
],
"author": "Vinay Godaba",
"license": "ISC",
"bugs": {
"url": "https://github.com/godabavinay/Task-Manager-API/issues"
},
"homepage": "https://github.com/godabavinay/Task-Manager-API#readme",
"dependencies": {
"dotenv": "^16.5.0",
"express": "^5.1.0",
"pg": "^8.15.6",
"uuid": "^11.1.0"
},
"devDependencies": {
"@types/express": "^5.0.1",
"@types/node": "^22.15.17",
"@types/uuid": "^10.0.0",
"@vitest/coverage-v8": "^3.1.3",
"@vitest/ui": "^3.1.3",
"concurrently": "^9.1.2",
"supertest": "^7.1.1",
"ts-node-dev": "^2.0.0",
"typescript": "^5.8.3",
"vitest": "^3.1.3",
"wait-on": "^8.0.3"
}
}