forked from kkeisuke/plantuml-editor2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.68 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
{
"name": "plantuml-editor",
"version": "0.0.0",
"scripts": {
"dev": "vite",
"build": "vue-tsc --noEmit && vite build",
"lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix --ignore-path .gitignore",
"lint:ci": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --ignore-path .gitignore",
"preview": "vite preview --port 5050",
"test:unit": "vitest --environment jsdom",
"test:e2e": "start-server-and-test preview http://127.0.0.1:5050/ 'cypress open'",
"test:e2e:ci": "start-server-and-test preview http://127.0.0.1:5050/ 'cypress run'",
"typecheck": "vue-tsc --noEmit"
},
"dependencies": {
"@popperjs/core": "^2.11.6",
"bootstrap": "^5.2.3",
"dexie": "^3.2.3",
"dompurify": "^3.0.0",
"marked": "^4.2.12",
"monaco-editor": "^0.35.0",
"plantuml-encoder": "^1.4.0",
"uuid": "^9.0.0",
"vue": "^3.2.47"
},
"devDependencies": {
"@rushstack/eslint-patch": "^1.2.0",
"@types/bootstrap": "^5.2.6",
"@types/dompurify": "^2.4.0",
"@types/jsdom": "^21.1.0",
"@types/marked": "^4.0.8",
"@types/node": "^18.14.0",
"@types/plantuml-encoder": "^1.4.0",
"@types/uuid": "^9.0.0",
"@vitejs/plugin-vue": "^4.0.0",
"@vue/eslint-config-prettier": "^7.0.0",
"@vue/eslint-config-typescript": "^11.0.2",
"@vue/test-utils": "^2.2.10",
"@vue/tsconfig": "^0.1.3",
"cypress": "^12.6.0",
"eslint": "^8.34.0",
"eslint-plugin-cypress": "^2.12.1",
"eslint-plugin-vue": "^9.9.0",
"jsdom": "^21.1.0",
"prettier": "^2.8.4",
"start-server-and-test": "^1.15.4",
"typescript": "~4.9.5",
"vite": "^4.1.2",
"vitest": "^0.28.5",
"vue-tsc": "^1.1.3"
}
}