-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 1.11 KB
/
package.json
File metadata and controls
34 lines (34 loc) · 1.11 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
{
"name": "boxes-monorepo",
"version": "0.5.0",
"private": true,
"type": "module",
"workspaces": [
"packages/*"
],
"scripts": {
"dev": "npm run dev --workspace=packages/core",
"dev:web": "concurrently \"npm run dev --workspace=packages/web\" \"npm run dev:vite --workspace=packages/web\"",
"dev:vite": "vite",
"version": "npm version $npm_package_version --workspaces --no-git-tag-version && git add packages/*/package.json",
"build": "npm run build --workspaces --if-present",
"test": "vitest run",
"test:watch": "vitest",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"web:dev": "npm run dev --workspace=packages/web",
"web:start": "npm run start --workspace=packages/web",
"docs:dev": "npm run dev --workspace=packages/docs",
"docs:build": "npm run build --workspace=packages/web && npm run build --workspace=packages/docs"
},
"devDependencies": {
"@vitejs/plugin-react": "^4.3.4",
"@vitejs/plugin-vue": "^6.0.5",
"eslint": "^8.57.0",
"vitest": "^1.3.1"
},
"dependencies": {
"cytoscape-panzoom": "^2.5.3",
"jsonld": "^9.0.0"
}
}