-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
58 lines (58 loc) · 1.76 KB
/
package.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
{
"name": "template",
"private": true,
"author": {
"name": "Miguel Bento",
"url": "https://mr-monkey.net/"
},
"contributors": [
"Miguel Bento",
"Joost Kersjes"
],
"scripts": {
"build": "vue-tsc --noEmit && vite build",
"build:watch": "vite build --watch --minify=false",
"cy:e2e": "start-server-and-test 'vite dev --port 8261' http://localhost:8261 'cypress open --e2e'",
"cy:component": "cypress open --component",
"test:unit": "vitest",
"lint": "eslint . --ext .vue,.js,.cjs,.mjs,.ts,.tsx,.cts,.mts --cache **/*.vue --fix --ignore-path .gitignore",
"dev": "vite",
"i18n:report": "vue-i18n-extract report --vueFiles './src/**/*.?(ts|vue)' --languageFiles './src/locales/*.json'",
"prod:preview": "vite preview --port 8261"
},
"dependencies": {
"@tanstack/vue-query": "4.26.1",
"core-js": "3.29.0",
"pinia": "2.0.33",
"vue": "3.2.47",
"vue-i18n": "9.2.2",
"vue-router": "4.1.6"
},
"devDependencies": {
"@intlify/unplugin-vue-i18n": "0.9.1",
"@rushstack/eslint-patch": "1.2.0",
"@tanstack/eslint-plugin-query": "4.26.2",
"@types/node": "18.15.0",
"@types/uuid": "9.0.1",
"@typescript/lib-dom": "npm:@types/web",
"@vitejs/plugin-vue": "4.0.0",
"@vue/eslint-config-prettier": "7.1.0",
"@vue/eslint-config-typescript": "11.0.2",
"@vue/test-utils": "2.3.1",
"cypress": "10.11.0",
"eslint": "8.35.0",
"eslint-plugin-cypress": "2.12.1",
"eslint-plugin-vue": "9.9.0",
"happy-dom": "8.9.0",
"npm-run-all": "4.1.5",
"prettier": "2.8.4",
"sass": "1.58.3",
"start-server-and-test": "2.0.0",
"typescript": "4.9.5",
"vite": "4.1.4",
"vitest": "0.29.2",
"vue-i18n-extract": "2.0.7",
"vue-tsc": "1.2.0"
},
"license": "MIT"
}