-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.36 KB
/
Copy pathpackage.json
File metadata and controls
47 lines (47 loc) · 1.36 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
{
"name": "api-template",
"version": "0.1",
"description": "",
"main": "",
"scripts": {
"prepare": "husky",
"api:dev": "npx nodemon source/api/index.ts | pino-pretty --translateTime",
"migrate:make": "npx knex migrate:make --knexfile ./database/knexfile.ts --migrations-directory ../migrations",
"migrate": "npx knex migrate:latest --knexfile ./database/knexfile.ts --migrations-directory ../migrations"
},
"author": "Winter4 <mywinter4@gmail.com>",
"license": "ISC",
"dependencies": {
"connect-redis": "^9.0.0",
"cookie-parser": "^1.4.7",
"cors": "^2.8.5",
"dotenv": "^17.2.3",
"express": "^5.2.1",
"express-async-handler": "^1.2.0",
"express-session": "^1.18.2",
"ioredis": "^5.8.2",
"knex": "^3.1.0",
"pg": "^8.16.3",
"pino": "^10.1.0",
"pino-http": "^11.0.0",
"pino-pretty": "^13.1.3",
"zod": "^4.1.13"
},
"devDependencies": {
"@eslint/js": "^9.39.1",
"@types/cookie-parser": "^1.4.10",
"@types/cors": "^2.8.19",
"@types/express": "^5.0.6",
"@types/express-session": "^1.18.2",
"@types/node": "^24.10.1",
"eslint": "^9.39.1",
"globals": "^16.5.0",
"husky": "^9.1.7",
"nodemon": "^3.1.11",
"npm-check-updates": "^19.1.2",
"ts-node": "^10.9.2",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.9.3",
"typescript-eslint": "^8.48.1"
}
}