-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.16 KB
/
Copy pathpackage.json
File metadata and controls
39 lines (39 loc) · 1.16 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
{
"name": "vite-eslint-template",
"version": "0.0.0",
"scripts": {
"dev": "vite",
"build": "vue-tsc --noEmit && vite build",
"serve": "vite preview",
"test:headless": "npx playwright test",
"test:browser": "npx playwright test --headed"
},
"dependencies": {
"cypress": "^10.11.0",
"playwright": "^1.22.1",
"vue": "^3.2.24",
"vue-router": "^4.0.11"
},
"devDependencies": {
"@playwright/test": "^1.22.1",
"@types/node": "^16.7.10",
"@typescript-eslint/eslint-plugin": "^4.29.3",
"@typescript-eslint/parser": "^4.29.3",
"@vitejs/plugin-vue": "^2.0.0",
"@vue/eslint-config-standard": "^6.1.0",
"@vue/eslint-config-typescript": "^7.0.0",
"eslint": "^7.32.0",
"eslint-config-standard": "^16.0.3",
"eslint-config-standard-with-typescript": "^20.0.0",
"eslint-plugin-import": "^2.24.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.1.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"eslint-plugin-unused-imports": "^1.1.4",
"eslint-plugin-vue": "^7.16.0",
"sass": "^1.38.0",
"typescript": "^4.3.5",
"vite": "^2.7.8",
"vue-tsc": "^0.29.8"
}
}