-
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) · 951 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 951 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": "clean-architecture-ts",
"version": "1.0.0",
"scripts": {
"test": "pnpm run tsc --noEmit && jest",
"tsc": "tsc",
"start": "ts-node src/main.ts",
"dev": "ts-node-dev --respawn --transpile-only src/infraestructure/api/server.ts"
},
"dependencies": {
"@types/express": "^5.0.0",
"@types/uuid": "^10.0.0",
"express": "^4.21.2",
"jstoxml": "^5.0.2",
"reflect-metadata": "^0.2.2",
"sequelize": "^6.37.5",
"sequelize-typescript": "^2.1.6",
"sqlite3": "^5.1.7",
"uuid": "^11.0.3",
"yup": "^1.6.1"
},
"devDependencies": {
"@swc/cli": "0.4.1-nightly.20240914",
"@swc/core": "^1.7.26",
"@swc/jest": "^0.2.36",
"@types/jest": "^29.5.13",
"@types/jstoxml": "^2.0.4",
"@types/supertest": "^6.0.2",
"jest": "^29.7.0",
"nodemon": "^3.1.9",
"supertest": "^7.0.0",
"ts-node": "^10.9.2",
"ts-node-dev": "^2.0.0",
"typescript": "^5.6.2"
}
}