-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.2 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.2 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
{
"name": "task-list-backend",
"version": "1.0.0",
"main": "index.js",
"type": "commonjs",
"repository": "https://github.com/aricionur/task-list-backend.git",
"author": "aricionur <aricionur@gmail.com>",
"license": "MIT",
"dependencies": {
"@datadog/datadog-api-client": "^1.41.0",
"@sentry/node": "^10.8.0",
"cors": "^2.8.5",
"dotenv": "^17.2.1",
"express": "^5.1.0",
"joi": "^18.0.1",
"js-yaml": "^4.1.0",
"pg": "^8.16.3",
"reflect-metadata": "^0.2.2",
"swagger-ui-express": "^5.0.1",
"typeorm": "^0.3.26"
},
"devDependencies": {
"@types/cors": "^2.8.19",
"@types/express": "^5.0.3",
"@types/jest": "^30.0.0",
"@types/joi": "^17.2.3",
"@types/js-yaml": "^4.0.9",
"@types/node": "^24.3.0",
"@types/pg": "^8.15.5",
"@types/supertest": "^6.0.3",
"@types/swagger-jsdoc": "^6.0.4",
"@types/swagger-ui-express": "^4.1.8",
"jest": "^30.1.1",
"nodemon": "^3.1.10",
"sqlite3": "^5.1.7",
"supertest": "^7.1.4",
"ts-jest": "^29.4.1",
"ts-node": "^10.9.2",
"typescript": "^5.9.2"
},
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"dev": "nodemon",
"test": "jest"
}
}