-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
55 lines (55 loc) · 1.89 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
43
44
45
46
47
48
49
50
51
52
53
54
55
{
"name": "v-network-graph-docs",
"description": "Documentation for v-network-graph",
"version": "0.1.0",
"license": "MIT",
"type": "module",
"scripts": {
"lint": "eslint -c .eslintrc.js ./docs/**/*.vue ./docs/**/*.ts",
"docs:dev": "run-s docs:dev:*",
"docs:dev:vp": "vitepress dev docs --port 3001",
"docs:build": "run-s docs:clean docs:build:*",
"docs:build:ts": "vue-tsc --noEmit",
"docs:build:vp": "vitepress build docs",
"docs:link": "npm link v-network-graph",
"docs:serve": "vitepress serve docs --port 3001",
"docs:publish": "./docs/.vitepress/publish.sh",
"docs:clean": "rimraf docs/.vitepress/dist",
"vrt:update": "playwright test --update-snapshots",
"vrt": "playwright test",
"vrt:chromium": "playwright test --project='chromium'",
"vrt:chromium:update": "playwright test --update-snapshots --project='chromium'"
},
"devDependencies": {
"@element-plus/icons": "^0.0.11",
"@playwright/test": "^1.48.2",
"@types/color-convert": "^2.0.4",
"@types/d3-force": "^3.0.10",
"@types/lodash-es": "^4.17.12",
"@types/node": "^20.16.6",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"@vitejs/plugin-vue": "^5.1.4",
"color-convert": "^2.0.1",
"d3-force": "^3.0.0",
"dagre": "^0.8.5",
"date-fns": "^4.1.0",
"element-plus": "^2.8.6",
"eslint": "^8.57.1",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.6.3",
"eslint-plugin-import": "^2.30.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-vue": "^9.28.0",
"lodash-es": "^4.17.21",
"npm-run-all": "^4.1.5",
"rimraf": "^6.0.1",
"rollup-plugin-visualizer": "^5.12.0",
"sass": "^1.80.4",
"typescript": "^5.6.3",
"unplugin-element-plus": "^0.8.0",
"v-network-graph": "^0.9.18",
"vitepress": "^1.4.1",
"vue-tsc": "^2.1.8"
}
}