-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.28 KB
/
Copy pathpackage.json
File metadata and controls
82 lines (82 loc) · 2.28 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
77
78
79
80
81
82
{
"name": "todo-quasar-openapi",
"version": "0.1.0",
"private": true,
"scripts": {
"serve": "vue-cli-service serve",
"build": "vue-cli-service build",
"test:unit": "vue-cli-service test:unit",
"test:e2e": "vue-cli-service test:e2e",
"lint": "vue-cli-service lint",
"prism": "prism mock -d --cors -p 7080 openapi.yml",
"openapi": "rm -rf src/sdk; mkdir src/sdk; openapi-generator-cli generate -g typescript-axios -i openapi.yml -o src/sdk/ -p withSeparateModelsAndApi=true,apiPackage=api,modelPackage=models",
"watch": "npm-watch"
},
"watch": {
"openapi": {
"patterns": [
"openapi.yml",
"package.json"
],
"inherit": true
},
"prism": {
"patterns": [
"openapi.yml"
],
"inherit": true
},
"serve": {
"patterns": [
"yarn.lock",
"package.json",
"src/main.ts",
"src/quasar-user-options.ts",
"tsconfig.json",
"vue.config.js",
"babel.config.js"
],
"inherit": true
}
},
"dependencies": {
"@quasar/extras": "^1.0.0",
"axios": "^0.24.0",
"core-js": "^3.6.5",
"dayjs": "^1.10.7",
"fetch": "^1.1.0",
"pinia": "^2.0.6",
"quasar": "^2.0.0",
"register-service-worker": "^1.7.1",
"vue": "^3.0.0",
"vue-router": "^4.0.0-0"
},
"devDependencies": {
"@openapitools/openapi-generator-cli": "^2.4.20",
"@stoplight/prism-cli": "^4.6.1",
"@types/jest": "^24.0.19",
"@typescript-eslint/eslint-plugin": "^4.18.0",
"@typescript-eslint/parser": "^4.18.0",
"@vue/cli-plugin-babel": "~4.5.0",
"@vue/cli-plugin-e2e-nightwatch": "~4.5.0",
"@vue/cli-plugin-eslint": "~4.5.0",
"@vue/cli-plugin-pwa": "~4.5.0",
"@vue/cli-plugin-router": "~4.5.0",
"@vue/cli-plugin-typescript": "~4.5.0",
"@vue/cli-plugin-unit-jest": "~4.5.0",
"@vue/cli-service": "~4.5.0",
"@vue/compiler-sfc": "^3.0.0",
"@vue/eslint-config-typescript": "^7.0.0",
"@vue/test-utils": "^2.0.0-0",
"chromedriver": "96",
"eslint": "^6.7.2",
"eslint-plugin-vue": "^7.0.0",
"geckodriver": "^1.20.0",
"npm-watch": "^0.11.0",
"sass": "1.32.12",
"sass-loader": "^10.1.0",
"typescript": "~4.1.5",
"vue-cli-plugin-quasar": "~4.0.4",
"vue-jest": "^5.0.0-0"
}
}