-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 2.18 KB
/
Copy pathpackage.json
File metadata and controls
71 lines (71 loc) · 2.18 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
60
61
62
63
64
65
66
67
68
69
70
71
{
"version": "0.0.1",
"name": "server-starter-template",
"author": "Salman Ahamed",
"description": "An Express boilerplate backend",
"$schema": "https://json.schemastore.org/package",
"repository": "https://github.com/Salman-Ahamed/Server-Starter-Template",
"module": "src/app.ts",
"type": "commonjs",
"license": "MIT",
"scripts": {
"start": "cross-env NODE_ENV=production node dist/app.js",
"dev": "tsx watch --require tsconfig-paths/register ./src/app.ts",
"build": "rimraf /dist && tsc --noEmit && npm run lint && swc src -d dist --out-dir dist strip-leading-paths",
"lint": "eslint ./src",
"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": {
"@types/swagger-jsdoc": "^6.0.4",
"@types/swagger-ui-express": "^4.1.7",
"compression": "^1.7.5",
"cors": "^2.8.5",
"dotenv": "^16.4.7",
"express": "^5.0.1",
"helmet": "^8.0.0",
"morgan": "^1.10.0",
"supertest": "^7.0.0",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^5.0.1",
"tsconfig-paths": "^4.2.0"
},
"devDependencies": {
"@eslint/js": "^9.19.0",
"@ianvs/prettier-plugin-sort-imports": "^4.4.1",
"@swc/cli": "^0.6.0",
"@swc/core": "^1.10.11",
"@types/bun": "latest",
"@types/compression": "^1.7.5",
"@types/cors": "^2.8.17",
"@types/dotenv": "^8.2.3",
"@types/express": "^5.0.0",
"@types/morgan": "^1.9.9",
"@types/node": "^22.12.0",
"@types/supertest": "^6.0.2",
"cross-env": "^7.0.3",
"eslint": "^9.19.0",
"eslint-config-prettier": "^10.0.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^5.2.3",
"globals": "^16.0.0",
"husky": "^9.1.7",
"lint-staged": "^15.4.3",
"prettier": "^3.4.2",
"rimraf": "^6.0.1",
"tsx": "^4.19.2",
"typescript": "^5.7.3",
"typescript-eslint": "^8.22.0",
"vitest": "^3.0.4",
"winston": "^3.17.0"
},
"_moduleAliases": {
"@": "dist"
}
}