-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1017 Bytes
/
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
{
"name": "app",
"version": "0.1.0",
"main": "./src/main.ts",
"type": "commonjs",
"scripts": {
"dev": "nodemon --exec ts-node --ignore /migrationsDiff/* src/main.ts"
},
"dependencies": {
"express-session": "^1.17.1",
"kanel": "^3.5.3",
"kysely": "^0.26.3",
"lodash": "^4.17.20",
"pg": "^8.7.1",
"pg-protocol": "^1.6.0",
"pg-tx": "^1.0.1",
"postgres": "^3.4.4",
"sql-highlight": "^4.0.1",
"tsx": "^4.7.1"
},
"devDependencies": {
"vite-plugin-require": "^1.1.14",
"vite-require": "^0.2.3",
"@types/express-session": "^1.17.0",
"@types/glob": "^8.1.0",
"@types/lodash": "^4.14.164",
"@types/node": "^22.3.0",
"@typescript-eslint/eslint-plugin": "^7.1.0",
"@typescript-eslint/parser": "^7.1.0",
"eslint": "^8.50.0",
"nodemon": "^3.0.1",
"prettier": "^3.2.5",
"ts-node": "^10.9.1",
"typescript": "^5.5.4",
"vitest": "^2.0.5"
},
"prettier": {
"singleQuote": true,
"trailingComma": "es5"
}
}