-
Notifications
You must be signed in to change notification settings - Fork 65
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.4 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 2.4 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
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
{
"name": "atest-ui",
"version": "v0.0.14",
"private": false,
"scripts": {
"dev": "vite --host 0.0.0.0",
"build": "run-p type-check build-only",
"preview": "vite preview",
"test:unit": "jest --collect-coverage",
"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/",
"test": "vitest"
},
"dependencies": {
"@codemirror/lang-json": "^6.0.2",
"@codemirror/lang-sql": "github:codemirror/lang-sql",
"@vueuse/core": "^10.11.0",
"codemirror": "^5.65.17",
"diff-match-patch": "^1.0.5",
"element-plus": "^2.10.2",
"intro.js": "^7.2.0",
"jsonlint-mod": "^1.7.6",
"jsonpath-plus": "^10.3.0",
"skywalking-client-js": "^0.10.0",
"vue": "^3.3.4",
"vue-codemirror": "^6.1.1",
"vue-i18n": "^11.1.2",
"vue-json-viewer": "^3.0.4",
"vue-router": "^4.2.2"
},
"devDependencies": {
"@rushstack/eslint-patch": "^1.2.0",
"@tsconfig/node18": "^2.0.1",
"@types/dotenv": "^8.2.0",
"@types/google-protobuf": "^3.15.12",
"@types/jest": "^29.5.3",
"@types/jsdom": "^21.1.1",
"@types/node": "^18.16.18",
"@types/node-fetch": "^2.6.4",
"@vitejs/plugin-vue": "^4.2.3",
"@vitejs/plugin-vue-jsx": "^3.0.1",
"@vue/eslint-config-prettier": "^10.2.0",
"@vue/eslint-config-typescript": "^14.3.0",
"@vue/test-utils": "^2.4.0",
"@vue/tsconfig": "^0.4.0",
"autoprefixer": "^10.4.21",
"cypress": "^13.1.0",
"eslint": "^9.27.0",
"eslint-plugin-cypress": "^4.1.0",
"eslint-plugin-vue": "^9.32.0",
"fetch-mock-jest": "^1.5.1",
"jest": "^29.6.1",
"jest-fetch-mock": "^3.0.3",
"jsdom": "^26.1.0",
"npm-run-all": "^4.1.5",
"postcss": "^8.5.6",
"prettier": "^3.4.2",
"start-server-and-test": "^2.0.0",
"tailwindcss": "^3.4.3",
"ts-jest": "^29.1.1",
"typescript": "~5.0.4",
"vite": "^4.5.5",
"vitest": "^0.32.4",
"vue-tsc": "^1.6.5"
},
"jest": {
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$"
}
}