-
Notifications
You must be signed in to change notification settings - Fork 117
/
package.json
42 lines (42 loc) · 1.17 KB
/
package.json
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
{
"name": "@rilldata/dev",
"version": "0.0.0",
"private": true,
"type": "module",
"workspaces": [
"docs",
"web-admin",
"web-auth",
"web-common",
"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": "go run cli/main.go start dev-project --no-ui --allowed-origins '*'",
"clean": "rm -rf dev-project",
"test": "npm run test -w web-common & npm run test -w web-auth & PLAYWRIGHT_TEST=true make cli && npm run test -w web-local"
},
"devDependencies": {
"@types/eslint": "^8.56.9",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-playwright": "^1.6.0",
"eslint-plugin-svelte": "^2.37.0",
"eslint-plugin-vitest": "^0.5.3",
"husky": "^8.0.0",
"lint-staged": "^15.2.7",
"prettier": "^3.3.3",
"prettier-plugin-svelte": "^3.2.7",
"syncpack": "^13.0.0",
"typescript": "^5.6.2",
"typescript-eslint": "^8.8.0"
},
"lint-staged": {
"*.{svelte,ts}": [
"prettier --write"
]
}
}