-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1009 Bytes
/
Copy pathpackage.json
File metadata and controls
37 lines (37 loc) · 1009 Bytes
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
{
"name": "job-application-platform",
"private": true,
"scripts": {
"dev": "turbo dev",
"build": "turbo build",
"lint": "turbo lint",
"test": "turbo test",
"format": "prettier --write \"**/*.{ts,tsx,js,jsx,json,css,md}\"",
"typecheck": "turbo typecheck",
"clean": "turbo clean",
"db:migrate": "cd phases/p0/packages/shared && npx drizzle-kit push",
"db:seed": "tsx phases/p0/packages/shared/db/seed.ts",
"db:generate": "cd phases/p0/packages/shared && npx drizzle-kit generate",
"next-build": "cd phases/p0/apps/web && npx next build"
},
"devDependencies": {
"@tailwindcss/postcss": "^4.0.0",
"postcss": "^8.4.0",
"prettier": "^3.4.0",
"tailwindcss": "^4.0.0",
"turbo": "^2.3.0",
"typescript": "^5.7.0"
},
"engines": {
"node": ">=20.0.0",
"npm": ">=10.0.0"
},
"packageManager": "npm@10.9.0",
"workspaces": [
"phases/p0/apps/*",
"phases/p0/packages/*"
],
"dependencies": {
"vitest": "^4.1.9"
}
}