-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.8 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 2.8 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
{
"name": "tikdo-backend",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "tsx watch --clear-screen=false src/server.ts",
"dev:debug": "tsx watch --inspect --clear-screen=false src/server.ts",
"build": "rimraf dist && tsc",
"start": "node dist/server.js",
"start:prod": "NODE_ENV=production node dist/server.js",
"type-check": "tsc --noEmit",
"type-check:watch": "tsc --noEmit --watch",
"db:generate": "prisma generate",
"db:push": "prisma db push",
"db:migrate": "prisma migrate dev",
"db:migrate:deploy": "prisma migrate deploy",
"db:migrate:create": "prisma migrate dev --create-only",
"db:seed": "tsx src/database/prisma/seed.ts",
"db:studio": "prisma studio",
"db:reset": "prisma migrate reset",
"docker:dev": "docker-compose -f docker/docker-compose.yml up -d",
"docker:dev:down": "docker-compose -f docker/docker-compose.yml down",
"docker:dev:logs": "docker-compose -f docker/docker-compose.yml logs -f",
"docker:build": "docker build -f docker/Dockerfile -t todo-planner-backend .",
"docker:build:dev": "docker build -f docker/Dockerfile.dev -t todo-planner-backend:dev .",
"lint": "eslint src/",
"lint:fix": "eslint src/ --fix",
"format": "prettier --write \"src/**/*.ts\"",
"format:check": "prettier --check \"src/**/*.ts\"",
"test": "NODE_OPTIONS='--experimental-vm-modules' jest",
"test:watch": "NODE_OPTIONS='--experimental-vm-modules' jest --watch",
"test:coverage": "NODE_OPTIONS='--experimental-vm-modules' jest --coverage",
"test:unit": "NODE_OPTIONS='--experimental-vm-modules' jest --testPathPatterns=tests/unit",
"test:integration": "NODE_OPTIONS='--experimental-vm-modules' jest --testPathPatterns=tests/integration",
"clean": "rimraf dist",
"clean:all": "rimraf dist node_modules"
},
"keywords": [],
"author": "",
"license": "ISC",
"type": "module",
"devDependencies": {
"@jest/globals": "^30.2.0",
"@types/express": "^5.0.6",
"@types/jest": "^30.0.0",
"@types/morgan": "^1.9.10",
"@types/node": "^25.2.0",
"@types/pg": "^8.16.0",
"@types/swagger-ui-express": "^4.1.8",
"@typescript-eslint/eslint-plugin": "^8.54.0",
"@typescript-eslint/parser": "^8.54.0",
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.5",
"jest": "^30.2.0",
"openapi-types": "^12.1.3",
"prettier": "^3.8.1",
"prisma": "^7.3.0",
"ts-jest": "^29.4.6",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"typescript-eslint": "^8.54.0"
},
"dependencies": {
"@prisma/adapter-pg": "^7.3.0",
"@prisma/client": "^7.3.0",
"dotenv": "^17.2.3",
"express": "^5.2.1",
"morgan": "^1.10.1",
"pg": "^8.18.0",
"swagger-ui-express": "^5.0.1",
"zod": "^4.3.6"
}
}