-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 2.03 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 2.03 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
{
"name": "CASCaRA-App",
"version": "0.1.0",
"private": true,
"scripts": {
"prebuild": "node scripts/generate-build-info.js",
"predev": "node scripts/generate-build-info.js",
"build:info": "node scripts/generate-build-info.js",
"build:xslt": "node scripts/compile-xslt.js",
"build:vue": "vue-cli-service build",
"build": "npm run build:xslt && npm run build:vue",
"serve": "vue-cli-service serve",
"lint": "vue-cli-service lint",
"test:logic": "jest --selectProjects unit-logic",
"test:unit": "jest --selectProjects unit-logic unit-vue",
"test:xslt": "playwright test",
"test:all": "jest"
},
"dependencies": {
"@mdi/font": "^7.4.47",
"@xmldom/xmldom": "^0.8.11",
"ajv-keywords": "^5.1.0",
"core-js": "^3.8.3",
"pinia": "^3.0.4",
"saxon-js": "^2.7.0",
"vue": "^3.2.13",
"vue-class-component": "^8.0.0-0",
"vue-router": "^4.6.3",
"vuetify": "^3.10.5"
},
"devDependencies": {
"@playwright/test": "^1.58.1",
"@types/jest": "^27.5.2",
"@types/node": "^25.2.1",
"@types/xmldom": "^0.1.34",
"@typescript-eslint/eslint-plugin": "^5.4.0",
"@typescript-eslint/parser": "^5.4.0",
"@vue/cli-plugin-babel": "^5.0.9",
"@vue/cli-plugin-eslint": "^5.0.9",
"@vue/cli-plugin-typescript": "^5.0.9",
"@vue/cli-plugin-unit-jest": "^5.0.9",
"@vue/cli-service": "~5.0.0",
"@vue/eslint-config-typescript": "^9.1.0",
"@vue/test-utils": "^2.0.0",
"@vue/vue3-jest": "^27.0.0",
"ajv": "^8.17.1",
"ajv-formats": "^3.0.1",
"assert": "^2.1.0",
"buffer": "^6.0.3",
"eslint": "^7.32.0",
"eslint-plugin-vue": "^8.0.3",
"jest": "27.5.1",
"path-browserify": "^1.0.1",
"playwright": "^1.58.1",
"process": "^0.11.10",
"stream-browserify": "^3.0.0",
"ts-jest": "27.1.5",
"typescript": "4.7",
"unplugin-vue-components": "^29.0.0",
"url": "^0.11.4",
"util": "^0.12.5"
},
"overrides": {
"cross-spawn": ">=6.0.6"
},
"resolve": {
"alias": {
"xmldom": "@xmldom/xmldom"
}
}
}