-
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) · 770 Bytes
/
Copy pathpackage.json
File metadata and controls
30 lines (30 loc) · 770 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": "simple-module-python",
"private": true,
"workspaces": [
"host/client_app",
"packages/*",
"modules/*"
],
"scripts": {
"dev": "npm run --workspace host/client_app dev",
"build": "npm run --workspace host/client_app build",
"lint": "biome check .",
"format": "biome format --write .",
"typecheck": "tsc --noEmit -p host/client_app/tsconfig.json",
"test": "vitest run --passWithNoTests"
},
"devDependencies": {
"@biomejs/biome": "^2.5.7",
"@testing-library/jest-dom": "^7.0.0",
"@types/node": "^26.1.2",
"@testing-library/react": "^16.3.2",
"@vitejs/plugin-react": "^6.0.5",
"jsdom": "^30.0.1",
"vite": "^8.2.0",
"vitest": "^4.1.10"
},
"overrides": {
"vite": "$vite"
}
}