-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 2.07 KB
/
Copy pathpackage.json
File metadata and controls
59 lines (59 loc) · 2.07 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
{
"name": "carpet",
"version": "0.2.0",
"description": "CARPET",
"productName": "CARPET",
"author": "Paul Christ",
"type": "module",
"private": true,
"scripts": {
"lint": "eslint --ext .js,.ts,.vue ./",
"format": "prettier --write \"**/*.{js,ts,vue,scss,html,md,json}\" --ignore-path .gitignore",
"test": "echo \"No test specified\" && exit 0",
"dev": "quasar dev",
"build": "quasar build",
"build:schema": "typescript-json-schema ./src/stores/taskGraphStore.ts \"SerialisedTask\" --ignoreErrors --noExtraProps --required --out ./src/schemas/JSONSchemas/SerialisedTaskSchema.schema.json && json-schema-to-zod -i ./src/schemas/JSONSchemas/SerialisedTaskSchema.schema.json -o ./src/schemas/zodSchemas/SerialisedTaskSchema.ts && prettier --write \"**/*.{js,ts,vue,scss,html,md,json}\" --ignore-path .gitignore"
},
"dependencies": {
"@hpcc-js/wasm": "^2.22.1",
"@quasar/extras": "^1.16.4",
"@vue-flow/background": "^1.3.0",
"@vue-flow/controls": "^1.1.2",
"@vue-flow/core": "^1.41.2",
"@vue-flow/minimap": "^1.5.0",
"@vue-flow/node-resizer": "^1.4.0",
"@vue-flow/node-toolbar": "^1.1.0",
"axios": "^1.2.1",
"carpet-component-library": "^0.2.3",
"jsonpath-plus": "^9.0.0",
"pinia": "^2.0.11",
"pinia-plugin-persistedstate": "^4.2.0",
"quasar": "^2.16.0",
"uninstall": "^0.0.0",
"vue": "^3.4.18",
"vue-i18n": "^9.2.2",
"vue-router": "^4.0.12",
"zod": "^3.23.8"
},
"devDependencies": {
"@intlify/unplugin-vue-i18n": "^2.0.0",
"@quasar/app-vite": "^2.0.0-beta.12",
"@types/node": "^20.5.9",
"@typescript-eslint/eslint-plugin": "^7.16.0",
"@typescript-eslint/parser": "^7.16.0",
"autoprefixer": "^10.4.2",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-vue": "^9.0.0",
"prettier": "^3.0.3",
"typescript": "~5.5.3",
"vite-plugin-checker": "^0.7.2",
"vite-plugin-vue-devtools": "^7.4.6",
"vue-tsc": "2.0.29"
},
"engines": {
"node": "^24 || ^22 || ^20 || ^18",
"npm": ">= 6.13.4",
"yarn": ">= 1.21.1"
}
}