-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.55 KB
/
Copy pathpackage.json
File metadata and controls
76 lines (76 loc) · 2.55 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
72
73
74
75
76
{
"name": "nodejs-express-template",
"version": "1.0.0",
"description": "My personal template to use to accelerate project setup in Node.js/Express",
"main": "src/index.ts",
"type": "module",
"scripts": {
"dev": "dotenv -e .env.development -- tsx watch src/index.ts",
"start": "dotenv -e .env.production -- node dist/index.js",
"build": "tsup",
"commit:check": "npm run format && npm run lint && npm run test && npm run build",
"test": "vitest run",
"lint": "biome lint .",
"format": "biome format . --write",
"format:check": "biome format . --check",
"typeorm": "node --loader ts-node/esm ./node_modules/typeorm/cli.js",
"migration:generate": "dotenv -e .env.production -- npm run typeorm -- migration:generate -d dist/database/data-source.js src/database/migrations/Init",
"migration:run": "dotenv -e .env.production -- npm run typeorm -- migration:run -d dist/database/data-source.js",
"migration:revert": "dotenv -e .env.production -- npm run typeorm -- migration:revert -d dist/database/data-source.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/YoUnGi102/NodeJS-Express-Template.git"
},
"keywords": ["node.js", "typescript", "express", "template"],
"author": "YoUnGi102 (Tomáš Greš)",
"license": "MIT",
"bugs": {
"url": "https://github.com/YoUnGi102/NodeJS-Express-Template/issues"
},
"homepage": "https://github.com/YoUnGi102/NodeJS-Express-Template#readme",
"dependencies": {
"@asteasolutions/zod-to-openapi": "^7.3.2",
"bcryptjs": "^3.0.2",
"cookie-parser": "^1.4.7",
"cors": "^2.8.5",
"express": "^5.1.0",
"express-rate-limit": "^7.5.0",
"fs": "^0.0.1-security",
"helmet": "^8.1.0",
"jsonwebtoken": "^9.0.2",
"pg": "^8.16.0",
"reflect-metadata": "^0.2.2",
"swagger-ui-express": "^5.0.1",
"tsyringe": "^4.10.0",
"typeorm": "^0.3.24",
"winston": "^3.17.0",
"winston-daily-rotate-file": "^5.0.0",
"zod": "^3.25.51"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@types/cookie-parser": "^1.4.9",
"@types/cors": "^2.8.18",
"@types/express": "^5.0.2",
"@types/jsonwebtoken": "^9.0.9",
"@types/ms": "^2.1.0",
"@types/node": "^22.15.18",
"@types/supertest": "^6.0.3",
"@types/swagger-ui-express": "^4.1.8",
"@types/uuid": "^10.0.0",
"depcheck": "^1.4.7",
"dotenv": "^16.5.0",
"dotenv-cli": "^8.0.0",
"sqlite3": "^5.1.7",
"supertest": "^7.1.1",
"ts-node": "^10.9.2",
"tsconfig-paths": "^4.2.0",
"tsup": "^8.5.0",
"tsx": "^4.19.4",
"typescript": "^5.8.3",
"typescript-transform-paths": "^3.5.5",
"vite-tsconfig-paths": "^5.1.4",
"vitest": "^3.2.1"
}
}