-
Notifications
You must be signed in to change notification settings - Fork 0
/
assets.json
123 lines (123 loc) · 2.73 KB
/
assets.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
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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
{
"base": {
"scripts": [
{"name": "dev", "value": "vite"},
{"name": "build", "value": "vite build"},
{"name": "preview", "value": "vite preview"}
],
"isDependencies": {
"vue": true,
"@vitejs/plugin-vue": false,
"vite": false
},
"glob": [
"templates/public",
"templates/src/assets",
"templates/index.html",
"templates/src/main.*",
"templates/src/App.*",
"templates/package.*",
"templates/vite.config.*"
]
},
"router": {
"isDependencies": {
"vue-router": true
},
"glob": [
"templates/src/router/**/*",
"templates/src/components/**/*",
"templates/src/views/**/*"
]
},
"pinia": {
"isDependencies": {
"pinia": true
},
"glob": ["templates/src/stores/**/*"]
},
"typescript": {
"scripts": [
{"name": "build", "value": "run-p type-check build-only"},
{"name": "build-only", "value": "vite build"},
{"name": "type-check", "value": "vue-tsc --noEmit"}
],
"isDependencies": {
"@types/node": false,
"npm-run-all": false,
"typescript": false,
"vue-tsc": false
},
"glob": ["templates/tsconfig.json", "templates/env.d.ts"]
},
"jsx": {
"isDependencies": {
"@vitejs/plugin-vue-jsx": false
}
},
"vitest": {
"scripts": [
{"name": "test:unit", "value": "vitest --environment jsdom --root src/"}
],
"isDependencies": {
"@vue/test-utils": false,
"jsdom": false,
"vitest": false
},
"glob": ["templates/src/components/__tests__/"]
},
"playwright": {
"scripts": [
{
"name": "test:e2e",
"value": "playwright test"
}
],
"isDependencies": {
"@playwright/test": false
},
"glob": ["templates/e2e/", "templates/playwright.config.ts"]
},
"cypress": {
"sciprts": [
{
"name": "test:e2e",
"value": "start-server-and-test preview :4173 'cypress run --e2e'"
},{
"name": "test:e2e:dev",
"value": "start-server-and-test 'vite dev --port 4173' :4173 'cypress open --e2e'"
}
],
"isDependencies": {
"cypress": false,
"start-server-and-test": false
},
"glob": [
"templates/cypress/e2e",
"templates/cypress/fixtures",
"templates/cypress/support/commands.ts",
"templates/cypress/support/e2e.js"
]
},
"cypressCT": {
"scripts": [
{
"name": "test:unit",
"value": "cypress run --component"
},
{
"name": "test:unit:dev",
"value": "cypress open --component"
}
],
"glob": [
"templates/cypress/support/component-index.html",
"templates/cypress/support/component.js"
]
},
"eslint": {
"isDependencies": {
"eslint-plugin-cypress": false
}
}
}