-
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) · 976 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 976 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
{
"devDependencies": {
"@swc/core": "^1.3.96",
"@swc/jest": "^0.2.29",
"@types/express": "^4.17.21",
"@types/jest": "^29.5.8",
"@types/node": "^20.9.1",
"@types/supertest": "^6.0.1",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-config-standard-with-typescript": "^43.0.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-n": "^16.5.0",
"eslint-plugin-promise": "^6.1.1",
"git-commit-msg-linter": "^5.0.4",
"jest": "^29.7.0",
"jest-mock-extended": "^3.0.5",
"supertest": "^6.3.3",
"ts-jest": "^29.1.1",
"tsx": "^4.1.3",
"typescript": "^5.2.2"
},
"scripts": {
"dev": "tsx --watch src/main/app.ts",
"test": "jest",
"test:watch": "npm run test -- --watch",
"lint": "eslint --fix --ext .ts ."
},
"dependencies": {
"dotenv": "^16.3.1",
"express": "^4.18.2",
"fast-glob": "^3.3.2",
"reflect-metadata": "^0.1.13",
"tsyringe": "^4.8.0"
}
}