-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 2.05 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 2.05 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
{
"name": "targetvector-api-backend-stack",
"version": "1.0.0",
"type": "module",
"description": "Modern Backend stack using Express.js, MikroORM, Passport, OAuth2, Axios and HMAC.",
"main": "index.js",
"scripts": {
"initial-setup": "pnpm run build && pnpm run migration:create -- --initial && pnpm run migration:up && pnpm run dev",
"start": "node dist/index.js",
"dev": "nodemon --exec ts-node src/index.ts",
"migration:create": "mikro-orm migration:create",
"migration:up": "mikro-orm migration:up",
"migration:fresh": "mikro-orm migration:fresh",
"schema:update": "mikro-orm schema:update -- --run",
"test": "echo \"Message: Tests not implmented yet.\" && exit 0",
"prepare": "husky",
"lint": "eslint \"./**/*.{js,ts}\"",
"lint:fix": "eslint \"./**/*.{js,ts}\" --fix",
"format": "prettier --write \"./**/*.{js,ts,json,md}\""
},
"keywords": [],
"author": "VOIDWARE Prohibited, Uriel Ballinas",
"license": "MIT",
"dependencies": {
"@mikro-orm/cli": "^6.4.16",
"@mikro-orm/core": "^6.4.16",
"@mikro-orm/migrations": "6.4.16",
"@mikro-orm/postgresql": "^6.4.16",
"@mikro-orm/reflection": "^6.4.16",
"@types/body-parser": "^1.19.6",
"axios": "^1.11.0",
"body-parser": "^2.2.0",
"dotenv": "^17.2.1",
"express": "^5.1.0",
"express-prom-bundle": "^8.0.0",
"multer": "^2.0.2",
"node-vault": "^0.10.5",
"passport-oauth2": "^1.8.0",
"pg": "^8.16.3",
"uuid": "^11.1.0"
},
"devDependencies": {
"@types/express": "^5.0.3",
"@types/multer": "^2.0.0",
"@types/node": "^24.3.0",
"@typescript-eslint/eslint-plugin": "^8.41.0",
"@typescript-eslint/parser": "^8.41.0",
"husky": "^9.1.7",
"lint-staged": "^16.1.5",
"nodemon": "^3.1.10",
"openapi-typescript": "^7.9.1",
"ts-node": "^10.9.2",
"typescript": "^5.9.2",
"vitest": "^3.2.4"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,ts}": [
"eslint --fix",
"prettier --write",
"git add"
]
}
}