-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
95 lines (95 loc) · 2.39 KB
/
package.json
File metadata and controls
95 lines (95 loc) · 2.39 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "visonia-backend",
"version": "0.0.1",
"type": "module",
"private": true,
"description": "A simple Node.js application using Sequelize and TypeScript for PostgreSQL.",
"author": "René Weiberlenn",
"license": "MIT",
"keywords": [
"sequelize",
"typescript",
"nodejs",
"express",
"postgresql",
"api",
"backend",
"rest",
"jwt",
"bcrypt",
"cors",
"morgan",
"lint-staged",
"husky",
"prettier",
"eslint"
],
"scripts": {
"dev": "tsx --watch --env-file .env.development src/index.ts",
"dev:seed": "tsx --env-file .env.development src/seed.ts",
"dev:prod": "tsx --watch --env-file .env.production src/index.ts",
"start": "node --env-file .env.production --conditions=production dist/src/index.js",
"build": "tsc -p tsconfig.build.json",
"type-check": "tsc --noEmit",
"lint": "eslint . ",
"lint:fix": "eslint . --fix",
"format": "prettier --write .",
"format:check": "prettier --check .",
"test": "vitest",
"test:run": "vitest --run",
"test:ui": "vitest --ui",
"test:coverage": "vitest run --coverage",
"prepare": "husky"
},
"lint-staged": {
"*.{js,ts}": [
"eslint",
"prettier --check"
],
"*.{json,yml,yaml}": [
"prettier --check"
]
},
"devDependencies": {
"@tsconfig/node22": "^22.0.1",
"@types/bcrypt": "^5.0.2",
"@types/cors": "^2.8.17",
"@types/express": "^5.0.1",
"@types/jsonwebtoken": "^9.0.9",
"@types/morgan": "^1.9.9",
"@types/node": "^22.13.17",
"@typescript-eslint/eslint-plugin": "^8.32.1",
"@typescript-eslint/parser": "^8.32.1",
"@vitest/coverage-v8": "^3.1.3",
"@vitest/eslint-plugin": "^1.1.44",
"eslint": "^9.26.0",
"husky": "^9.1.7",
"lint-staged": "^16.0.0",
"prettier": "^3.5.3",
"ts-node-dev": "^2.0.0",
"tsx": "^4.19.4",
"typescript": "^5.8.2",
"typescript-eslint": "^8.32.1",
"vitest": "^3.1.3"
},
"dependencies": {
"@dotenvx/dotenvx": "^1.39.0",
"bcrypt": "^5.1.1",
"body-parser": "^2.2.0",
"cors": "^2.8.5",
"express": "^5.1.0",
"joi": "^17.13.3",
"jsonwebtoken": "^9.0.2",
"morgan": "^1.10.0",
"pg": "^8.14.1",
"reflect-metadata": "^0.2.2",
"sequelize": "^6.37.7",
"sequelize-typescript": "^2.1.6"
},
"imports": {
"#*": {
"production": "./dist/src/*",
"default": "./src/*"
}
}
}