-
Notifications
You must be signed in to change notification settings - Fork 166
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.61 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.61 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
{
"name": "@rilldata/dev",
"version": "0.0.0",
"private": true,
"type": "module",
"workspaces": [
"docs",
"web-admin",
"web-common",
"web-integration",
"web-local"
],
"scripts": {
"prepare": "husky || true",
"build": "npm run build -w web-local",
"dev": "sh -c 'npm run dev-runtime -- \"$@\" & npm run dev-web -- --port 3001 & wait' --",
"dev-web": "npm run dev -w web-local -- ",
"dev-runtime": "node scripts/dev.js",
"clean": "rm -rf dev-project",
"test": "npm run test -w web-common & PLAYWRIGHT_TEST=true make cli && npm run test -w web-local",
"local-test": "cd web-local && npx playwright test --headed --project=e2e-chrome -g",
"gen:colors": "node web-common/src/features/themes/gen-colors.ts",
"quality": "bash ./scripts/web-test-code-quality.sh",
"quality:ci": "FAIL_FAST=true bash ./scripts/web-test-code-quality.sh"
},
"devDependencies": {
"@sveltejs/vite-plugin-svelte": "^7.0.0",
"@types/eslint": "^8.56.9",
"@vitest/eslint-plugin": "^1.1.42",
"eslint": "^9.24.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-playwright": "^1.6.0",
"eslint-plugin-svelte": "^2.37.0",
"husky": "^8.0.0",
"lint-staged": "^15.2.7",
"prettier": "~3.5.3",
"prettier-plugin-svelte": "~3.3.3",
"sass": "^1.88.0",
"syncpack": "^13.0.0",
"typescript": "^5.6.2",
"typescript-eslint": "^8.30.1"
},
"lint-staged": {
"*.{svelte,ts}": [
"prettier --write"
]
},
"overrides": {
"svelte": "^5.0.0",
"@sveltejs/vite-plugin-svelte": "^7.0.0",
"vite": "^8.0.0",
"picomatch": "^4.0.0"
}
}