-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
53 lines (53 loc) · 1.53 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
{
"name": "logicflow-vue-demo",
"version": "0.4.0",
"private": true,
"description": "Logic Flow Vue Demo",
"scripts": {
"all": "pnpm clean && pnpm build",
"dev": "vite",
"build": "vue-tsc --noEmit && vite build && node script/crlf.js",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"preview": "vite preview",
"cy:run": "cypress install && cypress run",
"test": "pnpm test:e2e",
"test:e2e": "start-server-and-test 'vite preview --open false' http://127.0.0.1:4173/ 'pnpm cy:run'",
"clean": "rimraf dist",
"preinstall": "npx only-allow pnpm"
},
"dependencies": {
"@ant-design/icons-vue": "^6.1.0",
"@highlightjs/vue-plugin": "^2.1.0",
"@logicflow/core": "^1.1.21",
"@logicflow/extension": "^1.1.21",
"ant-design-vue": "^3.2.9",
"highlight.js": "^11.5.1",
"ids": "^1.0.0",
"lodash": "^4.17.21",
"logicflow-useapi": "^0.3.0",
"resize-detector": "^0.3.0",
"splitpanes": "^3.1.1",
"vue": "^3.2.37"
},
"optionalDependencies": {
"cypress": "^10.3.0",
"jimp": "^0.16.1",
"start-server-and-test": "^1.14.0"
},
"devDependencies": {
"@antfu/eslint-config": "^0.25.2",
"@types/node": "^18.0.1",
"@types/splitpanes": "^2.2.1",
"@vitejs/plugin-vue": "^2.3.3",
"eslint": "^8.19.0",
"eslint-plugin-cypress": "^2.12.1",
"rimraf": "^3.0.2",
"rollup": "^2.75.7",
"rollup-plugin-visualizer": "^5.6.0",
"typescript": "^4.7.4",
"unplugin-vue-components": "^0.20.1",
"vite": "^2.9.13",
"vue-tsc": "^0.38.2"
}
}