-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
58 lines (58 loc) · 1.73 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
{
"$schema": "https://json.schemastore.org/package",
"name": "express-ts-starter",
"module": "src/app.ts",
"type": "commonjs",
"license": "MIT",
"scripts": {
"start": "NODE_ENV=production node dist/app.js",
"dev": "tsx watch ./src/app.ts --w",
"build": "tsc --noEmit && npm run lint && swc src -d dist --out-dir dist --source-maps --strip-leading-paths",
"lint": "eslint 'src/**/*.{ts,js}'",
"format": "prettier --write 'src/**/*.{ts,js,json,md}'",
"test": "vitest",
"docker:build": "docker-compose build",
"docker:up": "docker-compose up",
"docker:down": "docker-compose down",
"prepare": "husky",
"lint-staged": "lint-staged --concurrent false",
"cli": "tsx ./script/index.ts"
},
"dependencies": {
"compression": "^1.7.4",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"express": "^5.0.1",
"helmet": "^8.0.0",
"morgan": "^1.10.0",
"supertest": "^7.0.0"
},
"devDependencies": {
"@eslint/js": "^9.13.0",
"@ianvs/prettier-plugin-sort-imports": "^4.4.0",
"@swc/cli": "^0.5.0",
"@swc/core": "^1.7.39",
"@types/bun": "latest",
"@types/compression": "^1.7.5",
"@types/cors": "^2.8.17",
"@types/dotenv": "^8.2.0",
"@types/express": "^5.0.0",
"@types/morgan": "^1.9.9",
"@types/node": "^22.7.8",
"@types/supertest": "^6.0.2",
"eslint": "^9.13.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^5.2.1",
"globals": "^15.11.0",
"husky": "^9.1.6",
"lint-staged": "^15.2.10",
"prettier": "^3.3.3",
"rimraf": "^6.0.1",
"tsx": "^4.19.1",
"typescript": "^5.6.3",
"typescript-eslint": "^8.11.0",
"vitest": "^2.1.5",
"winston": "^3.15.0"
}
}