forked from rilldata/rill
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 959 Bytes
/
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
{
"name": "@rilldata/dev",
"version": "0.10.0",
"type": "module",
"workspaces": [
"docs",
"web-admin",
"web-auth",
"web-common",
"web-local"
],
"scripts": {
"build": "npm run build -w web-local",
"dev": "sh -c 'npm run dev-runtime & npm run dev-web & wait'",
"dev-web": "npm run dev -w web-local",
"dev-runtime": "go run cli/main.go start dev-project --no-ui",
"clean": "rm -rf dev-project",
"test": "npm run test -w web-common && npm run test -w web-local && npm run test -w web-auth"
},
"overrides": {
"@rgossiaux/svelte-headlessui": {
"svelte": "^4.0.0"
}
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^6.17.0",
"@typescript-eslint/parser": "^6.17.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-svelte": "^2.35.1",
"prettier": "^3.1.1",
"prettier-plugin-svelte": "^3.1.2",
"typescript": "^5.3.3"
}
}