-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
58 lines (58 loc) · 1.61 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
51
52
53
54
55
56
57
58
{
"name": "ts-express-starter",
"version": "1.0.0",
"description": "Minimal Express/TypeScript starter",
"main": "index.js",
"engines": {
"node": "20.x"
},
"scripts": {
"build": "tsc",
"dev": "NODE_PATH=./src ts-node-dev -r dotenv/config src",
"format": "prettier --write \"{src,test}/**/*.{js,ts}\"",
"lint": "eslint src --ext ts",
"lint:fix": "npm run lint -- --fix",
"start": "NODE_PATH=./dist node dist/src",
"test": "jest -c test/jest.config.js"
},
"keywords": [],
"author": "",
"license": "MIT",
"dependencies": {
"@hapi/boom": "^10.0.1",
"celebrate": "^15.0.1",
"compression": "^1.7.4",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"express-oas-generator": "^1.0.46",
"helmet": "^7.0.0",
"joi": "^17.9.2",
"mongoose": "^6.4.6",
"morgan": "^1.10.0",
"pino": "^8.15.0",
"tsconfig-paths": "^4.2.0"
},
"devDependencies": {
"@types/express": "^4.17.17",
"@types/jest": "^29.5.4",
"@types/node": "^20.5.4",
"@types/serve-static": "^1.15.2",
"@types/supertest": "^2.0.12",
"@typescript-eslint/eslint-plugin": "^6.4.1",
"@typescript-eslint/parser": "^6.4.1",
"eslint": "^8.47.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^9.0.0",
"eslint-import-resolver-typescript": "^3.6.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.1.1",
"jest": "^29.6.4",
"prettier": "^3.0.2",
"supertest": "^6.3.3",
"ts-jest": "^29.1.1",
"ts-node-dev": "^2.0.0",
"typescript": "^5.2.2"
}
}