-
Notifications
You must be signed in to change notification settings - Fork 39
/
package.json
32 lines (32 loc) · 1.26 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
{
"private": true,
"type": "module",
"workspaces": [
"packages/core",
"packages/react",
"packages/react-inertia",
"packages/vue",
"packages/vue-inertia",
"packages/alpine"
],
"scripts": {
"watch": "npx concurrently \"npm run watch --workspace=packages/core\" \"npm run watch --workspace=packages/react\" \"npm run watch --workspace=packages/react-inertia\" \"npm run watch --workspace=packages/vue\" \"npm run watch --workspace=packages/vue-inertia\" \"npm run watch --workspace=packages/alpine\" --names=core,react,react-inertia,vue,vue-inertia,alpine",
"build": "npm run build --workspaces",
"link": "npm link --workspaces",
"typeCheck": "npm run typeCheck --workspaces",
"lint": "eslint",
"test": "npm run test --workspaces --if-present"
},
"devDependencies": {
"@eslint/eslintrc": "^3.1.0",
"@eslint/js": "^9.9.1",
"@stylistic/eslint-plugin": "^2.6.4",
"@typescript-eslint/eslint-plugin": "^8.3.0",
"@typescript-eslint/parser": "^8.3.0",
"eslint": "^9.9.1",
"eslint-plugin-react": "^7.35.2",
"eslint-plugin-vue": "^9.28.0",
"globals": "^15.9.0",
"typescript-eslint": "^8.4.0"
}
}