-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.4 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
46
47
48
49
50
{
"name": "clean-ts-sms",
"version": "1.0.0",
"author": "Oliveira Ngola",
"description": "Pratical Project for Monolitcs Systems",
"keywords": ["DDD", "TDD", "Design Patterns", "Jest", "Fullcycle"],
"license": "MIT",
"scripts": {
"lint": "eslint .",
"lint:fix": "npm run lint -- --fix",
"tsc": "tsc",
"test": "npm run tsc -- --noEmit && jest --no-cache",
"test:ci": "npm test -- --coverage"
},
"dependencies": {
"dotenv": "^16.3.1",
"express": "^4.18.2",
"jstoxml": "^3.2.7",
"reflect-metadata": "^0.1.13",
"sequelize": "^6.31.0",
"sequelize-typescript": "^2.1.5",
"sqlite3": "^5.1.6",
"uuid": "^9.0.0",
"yup": "^1.2.0"
},
"devDependencies": {
"@swc/cli": "^0.1.62",
"@swc/core": "^1.3.51",
"@swc/jest": "^0.2.26",
"@types/express": "^4.17.17",
"@types/jstoxml": "^2.0.2",
"@types/supertest": "^2.0.12",
"@types/jest": "^29.5.0",
"@types/node": "^18.16.18",
"@types/uuid": "^9.0.2",
"@types/validator": "^13.7.17",
"@typescript-eslint/eslint-plugin": "^5.60.0",
"eslint": "^8.43.0",
"eslint-config-standard-with-typescript": "^35.0.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-n": "^15.7.0",
"eslint-plugin-promise": "^6.1.1",
"jest": "^29.5.0",
"nodemon": "^3.0.1",
"supertest": "^6.3.3",
"ts-node": "^10.9.1",
"tslint": "^6.1.3",
"typescript": "^4.9.5"
}
}