-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 809 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 809 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
{
"name": "proteinos",
"version": "1.0.0",
"private": true,
"packageManager": "npm@10.8.2",
"workspaces": [
"packages/*"
],
"scripts": {
"dev": "turbo run dev --parallel",
"build": "turbo run build",
"typecheck": "turbo run typecheck",
"test": "vitest run tests/unit tests/integration",
"test:e2e": "playwright test tests/e2e",
"lint": "turbo run lint",
"build:shared": "npm --workspace @proteinos/shared run build",
"db:migrate": "tsx scripts/migrate.ts",
"db:seed": "tsx scripts/seed.ts",
"setup": "bash scripts/setup.sh"
},
"devDependencies": {
"@playwright/test": "^1.54.1",
"@types/node": "^22.15.21",
"concurrently": "^9.1.2",
"tsx": "^4.20.3",
"turbo": "^2.5.3",
"typescript": "^5.8.3",
"vitest": "^3.2.3"
}
}