-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.84 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.84 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
58
59
{
"name": "express-ts-app",
"version": "1.0.0",
"description": "<project-description>",
"author": "<author-name>",
"main": "src/app.ts",
"license": "MIT",
"scripts": {
"dev": "touch .env && tsx watch -r tsconfig-paths/register --env-file=.env src/app.ts",
"build": "tsc && tsc-alias --verbose",
"start": "touch .env && node --env-file=.env dist/app.js",
"lint": "eslint . --ext .ts",
"lint:fix": "eslint . --ext .ts --fix",
"format": "prettier --write \"**/*.{ts,js,json,md}\"",
"test": "jest --silent",
"test:coverage": "jest --silent --coverage",
"docker:build": "docker build -t express-ts-app .",
"docker:run": "docker run -d --name express-ts-app -p 3000:3000 -w /app express-ts-app"
},
"keywords": [],
"devDependencies": {
"@babel/core": "^7.26.9",
"@babel/preset-env": "^7.25.8",
"@babel/preset-typescript": "^7.28.5",
"@eslint/js": "^9.38.0",
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"@types/cors": "^2.8.17",
"@types/express": "^5.0.0",
"@types/jest": "^29.5.13",
"@types/morgan": "^1.9.9",
"@types/node": "^22.7.5",
"@types/supertest": "^6.0.2",
"@typescript-eslint/eslint-plugin": "^8.14.0",
"@typescript-eslint/parser": "^8.54.0",
"babel-jest": "^29.7.0",
"eslint": "^9.21.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jest": "^28.8.3",
"eslint-plugin-jsdoc": "^50.3.1",
"eslint-plugin-prettier": "^5.2.1",
"globals": "^16.0.0",
"jest": "^29.7.0",
"prettier": "^3.3.3",
"supertest": "^7.0.0",
"ts-jest": "^29.2.5",
"tsc-alias": "^1.8.10",
"tsconfig-paths": "^4.2.0",
"tsx": "^4.19.1",
"typescript": "^5.9.3"
},
"dependencies": {
"cors": "^2.8.5",
"dotenv": "^16.4.7",
"express": "^5.0.1",
"helmet": "^8.0.0",
"morgan": "^1.10.0",
"zod": "^3.23.8"
}
}