-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
87 lines (87 loc) · 2.78 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "node_project_template",
"version": "1.0.0",
"type": "module",
"description": "Typescript & Express template",
"author": "@ocamilomontealegre",
"main": "index.js",
"scripts": {
"build": "swc ./src -d dist --strip-leading-paths",
"clean": "rm -rf dist",
"start": "node dist/main.js",
"start:dev": "nodemon",
"lint": "eslint src",
"lint:fix": "npx lint --fix",
"lint:verbose": "npx lint --debug",
"lint:inspect": "npx @eslint/config-inspector@latest",
"ts": "npx tsc --noEmit",
"ts:verbose": "npx tsc --noEmit --diagnostics",
"format": "npx prettier --write '**/*.{js,ts,json,yml}'",
"test:unit": "vitest --config test/config/vitest.config.unit.ts --no-watch --silent=false",
"test:e2e": "vitest --config test/config/vitest.config.e2e.ts --no-watch --silent",
"test:c": "vitest --config test/config/vitest.config.ts --coverage --no-watch --silent",
"test:co": "open ./coverage/index.html",
"test": "npm-run-all --parallel test:unit test:e2e",
"prepare": "husky || true",
"check:d": "npx knip --dependencies",
"npkill": "npx npkill"
},
"keywords": [
"typescript",
"express",
"template"
],
"license": "ISC",
"devDependencies": {
"@commitlint/cli": "^19.5.0",
"@commitlint/config-conventional": "^19.5.0",
"@commitlint/types": "^19.5.0",
"@eslint/js": "^9.13.0",
"@swc/cli": "0.4.1-nightly.20240914",
"@swc/core": "^1.7.42",
"@types/cors": "^2.8.17",
"@types/eslint__js": "^8.42.3",
"@types/express": "^4.17.21",
"@types/node": "^22.8.6",
"@types/supertest": "^6.0.2",
"@types/swagger-jsdoc": "^6.0.4",
"@types/swagger-ui-express": "^4.1.7",
"@typescript-eslint/parser": "^8.12.2",
"@vitest/coverage-v8": "^2.1.4",
"@vitest/eslint-plugin": "^1.1.7",
"cross-env": "^7.0.3",
"eslint": "^9.14.0",
"globals": "^15.11.0",
"husky": "^9.1.6",
"lint-staged": "^15.2.10",
"nodemon": "^3.1.7",
"npm-run-all": "^4.1.5",
"supertest": "^7.0.0",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^5.0.1",
"typescript": "^5.6.3",
"typescript-eslint": "^8.12.2",
"vite-tsconfig-paths": "^5.0.1",
"vitest": "^2.1.4"
},
"dependencies": {
"@chiguitech/node-common": "^0.0.1",
"@cspell/eslint-plugin": "^8.15.5",
"@eslint/config-inspector": "0.5.6",
"@typescript-eslint/eslint-plugin": "^8.12.2",
"class-transformer": "^0.5.1",
"class-validator": "^0.14.1",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"eslint-plugin-import": "2.31.0",
"express": "^4.21.1",
"helmet": "^8.0.0",
"http-status-codes": "2.3.0",
"inversify": "^6.0.3",
"inversify-express-utils": "^6.4.7",
"reflect-metadata": "^0.2.2",
"tsx": "4.19.2",
"winston": "^3.15.0",
"zod": "^3.23.8"
}
}