-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.23 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 2.23 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
{
"name": "document-management-system",
"version": "0.0.0",
"private": true,
"type": "module",
"packageManager": "pnpm@9.15.0",
"engines": {
"node": ">=20.0.0"
},
"scripts": {
"dev": "turbo dev",
"dev:setup": "docker compose up -d && pnpm db:setup && pnpm dev",
"db:setup": "pnpm dotenv -e .env -- pnpm prisma db push && pnpm db:seed",
"build": "turbo build",
"test": "turbo test",
"test:unit": "turbo test:unit",
"test:integration": "turbo test:integration",
"test:e2e": "turbo test:e2e",
"lint": "turbo lint",
"lint:fix": "turbo lint:fix",
"type-check": "turbo type-check",
"format": "prettier --write \"**/*.{ts,tsx,md,json}\"",
"format:check": "prettier --check \"**/*.{ts,tsx,md,json}\"",
"db:migrate": "pnpm --filter @dms/api db:migrate",
"db:generate": "pnpm --filter @dms/api db:generate",
"db:push": "pnpm --filter @dms/api db:push",
"db:seed": "pnpm --filter @dms/api db:seed",
"db:studio": "pnpm --filter @dms/api db:studio",
"infra:deploy:staging": "pnpm --filter @dms/infrastructure deploy:staging",
"infra:deploy:prod": "pnpm --filter @dms/infrastructure deploy:prod",
"clean": "turbo clean && rm -rf node_modules",
"postinstall": "prisma generate --schema=prisma/schema.prisma",
"prepare": "husky"
},
"devDependencies": {
"@aws-sdk/client-s3": "^3.1017.0",
"@changesets/cli": "^2.30.0",
"@marp-team/marp-cli": "^4.3.1",
"@types/bcryptjs": "^2.4.6",
"@types/node": "^22.19.15",
"bcryptjs": "^2.4.3",
"cross-env": "^10.1.0",
"dotenv": "^17.3.1",
"dotenv-cli": "^11.0.0",
"husky": "^9.1.7",
"lint-staged": "^15.5.2",
"pdf-lib": "^1.17.1",
"prettier": "^3.8.1",
"prettier-plugin-tailwindcss": "^0.7.2",
"prisma": "5.20.0",
"tsx": "^4.21.0",
"turbo": "^2.8.20",
"typescript": "^5.9.3"
},
"lint-staged": {
"*.{ts,tsx}": [
"eslint --fix",
"prettier --write"
],
"*.{json,md}": [
"prettier --write"
]
},
"dependencies": {
"@prisma/client": "5.20.0"
},
"pnpm": {
"overrides": {
"path-to-regexp": ">=8.4.0",
"picomatch": ">=4.0.4",
"esbuild": ">=0.25.0",
"lodash": ">=4.17.23",
"js-yaml": ">=4.1.1"
}
}
}