forked from devfullcycle/fc-clean-architecture
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 838 Bytes
/
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
{
"devDependencies": {
"@swc/cli": "^0.1.55",
"@swc/core": "^1.2.148",
"@swc/jest": "^0.2.20",
"@types/jest": "^27.4.1",
"@types/jstoxml": "^2.0.2",
"@types/supertest": "^2.0.12",
"jest": "^27.5.1",
"supertest": "^6.2.2",
"ts-node": "^10.6.0",
"tslint": "^6.1.3",
"typescript": "^4.5.5"
},
"scripts": {
"test": "npm run tsc -- --noEmit && jest",
"tsc": "tsc",
"dev": "nodemon src/infrastructure/api/server.ts"
},
"dependencies": {
"@types/express": "^4.17.13",
"@types/uuid": "^8.3.4",
"dotenv": "^16.0.0",
"express": "^4.17.3",
"jstoxml": "^3.2.3",
"nodemon": "^2.0.15",
"reflect-metadata": "^0.1.13",
"sequelize": "^6.17.0",
"sequelize-typescript": "^2.1.3",
"sqlite3": "^5.0.2",
"uuid": "^8.3.2",
"yup": "^0.32.11"
}
}