-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.21 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
{
"name": "exemplo-monolito-modular",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "nodemon src/infrastructure/api/server.ts",
"test": "npm run tsc && jest",
"tsc": "tsc --noEmit",
"tscWatch": "tsc --noEmit --watch",
"watch": "npm run tsc && jest --watch"
},
"engines": {
"node": "16"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@swc/cli": "^0.1.56",
"@swc/core": "^1.2.160",
"@swc/jest": "^0.2.20",
"@types/express": "^4.17.13",
"@types/jest": "^27.4.1",
"@types/jstoxml": "^2.0.2",
"@types/supertest": "^2.0.12",
"jest": "^27.5.1",
"nodemon": "^2.0.16",
"supertest": "^6.2.3",
"ts-node": "^10.7.0",
"tsconfig-paths": "^4.0.0",
"tslint": "^6.1.3",
"typescript": "^4.6.2"
},
"dependencies": {
"dotenv": "^16.0.1",
"express": "^4.18.1",
"jstoxml": "^3.2.3",
"reflect-metadata": "^0.1.13",
"sequelize": "^6.17.0",
"sequelize-typescript": "^2.1.3",
"sqlite3": "^5.0.2",
"yup": "^0.32.11"
}
}