-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.59 KB
/
Copy pathpackage.json
File metadata and controls
57 lines (57 loc) · 1.59 KB
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
51
52
53
54
55
56
57
{
"name": "backend-ddd",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "npx tsc",
"test": "NODE_ENV=test npx jest --config ./jest.config.js",
"dev": "NODE_ENV=dev ts-node-dev --ignore-watch node_modules ./src/apps/platform/start.ts",
"lint": "npx eslint .",
"lint:fix": "npx eslint . --fix"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"awilix": "^10.0.2",
"compression": "^1.7.4",
"dotenv": "^16.0.3",
"errorhandler": "^1.5.1",
"express": "^4.18.2",
"express-promise-router": "^4.1.1",
"express-validator": "^6.10.0",
"glob": "^7.1.6",
"helmet": "^7.0.0",
"http-status": "^1.6.2",
"knex": "3.1.0",
"pg": "^8.11.1",
"uuid": "^9.0.0",
"uuid-validate": "^0.0.3"
},
"devDependencies": {
"@types/compression": "^1.7.2",
"@types/errorhandler": "^1.5.0",
"@types/express": "^4.17.17",
"@types/glob": "^8.1.0",
"@types/jest": "^24.0.18",
"@types/node": "^20.2.1",
"@types/supertest": "^2.0.8",
"@types/uuid": "^9.0.2",
"@types/uuid-validate": "^0.0.1",
"@typescript-eslint/eslint-plugin": "^5.59.6",
"@typescript-eslint/parser": "^5.59.6",
"concurrently": "^8.0.1",
"eslint": "^8.40.0",
"eslint-config-standard-with-typescript": "^34.0.1",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-n": "^15.7.0",
"eslint-plugin-promise": "^6.1.1",
"jest": "^24.9.0",
"nodemon": "^2.0.22",
"supertest": "^4.0.2",
"ts-jest": "^24.1.0",
"ts-node-dev": "^2.0.0",
"typescript": "^5.0.4"
}
}