-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
85 lines (85 loc) · 2.73 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "carpet",
"version": "0.0.0",
"private": true,
"scripts": {
"dev": "vite",
"build": "run-p type-check build-only",
"preview": "vite preview",
"test:unit": "vitest",
"test:e2e": "start-server-and-test preview http://localhost:4173 'cypress run --e2e'",
"test:e2e:dev": "start-server-and-test 'vite dev --port 4173' http://localhost:4173 'cypress open --e2e'",
"build-only": "vite build",
"type-check": "vue-tsc --noEmit -p tsconfig.vitest.json --composite false",
"lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix --ignore-path .gitignore",
"format": "prettier --write src/",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build"
},
"dependencies": {
"@hpcc-js/wasm": "^1.0.1",
"@panzoom/panzoom": "^4.5.1",
"@types/d3": "5.16.0",
"@types/d3-drag": "1.2.5",
"@types/d3-graphviz": "^2.6.6",
"@typescript-eslint/scope-manager": "^6.11.0",
"@vueuse/core": "^10.3.0",
"ace-builds": "^1.22.0",
"axios": "^1.4.0",
"clickout-event": "^1.1.2",
"d3": "^7.8.5",
"d3-contour": "^2.0.0",
"d3-drag": "1.2.5",
"d3-graphviz": "^5.0.2",
"d3-hsv": "^0.1.0",
"graphology": "^0.25.4",
"grid-layout-plus": "^1.0.2",
"install": "^0.13.0",
"interactjs": "^1.10.18",
"jsme-vue": "^0.0.10",
"lodash": "^4.17.21",
"pinia": "^2.0.36",
"react-dnd-html5-backend": "^16.0.1",
"v-tooltip": "^2.1.3",
"vue": "^3.3.2",
"vue-grid-layout": "github:plc-dev/vue-grid-layout#aladin",
"vue-router": "^4.2.0",
"vuedraggable": "^4.1.0",
"vuex": "^4.1.0"
},
"devDependencies": {
"@interactjs/types": "^1.10.18",
"@rushstack/eslint-patch": "^1.2.0",
"@storybook/addon-essentials": "^7.2.1",
"@storybook/addon-interactions": "^7.2.1",
"@storybook/addon-links": "^7.2.1",
"@storybook/blocks": "^7.2.1",
"@storybook/testing-library": "^0.2.0",
"@storybook/vue3-vite": "^7.2.1",
"@tsconfig/node18": "^2.0.1",
"@types/jsdom": "^21.1.1",
"@types/lodash": "^4.14.195",
"@types/node": "^18.16.16",
"@vitejs/plugin-vue": "^4.2.3",
"@vue/eslint-config-prettier": "^7.1.0",
"@vue/eslint-config-typescript": "^11.0.3",
"@vue/test-utils": "^2.3.2",
"@vue/tsconfig": "^0.4.0",
"cypress": "^12.12.0",
"eslint": "^8.39.0",
"eslint-plugin-cypress": "^2.13.3",
"eslint-plugin-storybook": "^0.6.13",
"eslint-plugin-vue": "^9.11.0",
"jsdom": "^22.0.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.8.8",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"start-server-and-test": "^2.0.0",
"storybook": "^7.2.1",
"typescript": "~5.0.4",
"vite": "^4.3.5",
"vitest": "^0.31.0",
"vue-tsc": "^1.6.4"
}
}