-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
56 lines (56 loc) · 1.83 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
{
"name": "vuepabase",
"version": "0.0.0",
"scripts": {
"dev": "vite --host",
"build": "vue-tsc --noEmit && vite build",
"preview": "vite preview --port 5050",
"test:vitest": "vitest --environment jsdom",
"test:unit": "cypress open-ct",
"test:unit:ci": "cypress run-ct --quiet --reporter spec",
"test:e2e": "start-server-and-test preview http://127.0.0.1:5050/ 'cypress open'",
"test:e2e:ci": "start-server-and-test preview http://127.0.0.1:5050/ 'cypress run'",
"typecheck": "vue-tsc --noEmit",
"lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix --ignore-path .gitignore"
},
"dependencies": {
"@headlessui/vue": "^1.4.3",
"@supabase/supabase-js": "^1.29.4",
"@vueuse/core": "^7.4.1",
"pinia": "^2.0.10",
"v-wave": "^1.3.3",
"vue": "^3.2.26",
"vue-router": "^4.0.12"
},
"devDependencies": {
"@cypress/vite-dev-server": "^2.2.2",
"@cypress/vue": "^3.1.0",
"@iconify/json": "^1.1.461",
"@rushstack/eslint-patch": "^1.1.0",
"@types/autosize": "^4.0.1",
"@types/node": "^16.11.17",
"@vitejs/plugin-vue": "^2.0.1",
"@vue/compiler-sfc": "^3.2.29",
"@vue/eslint-config-prettier": "^7.0.0",
"@vue/eslint-config-typescript": "^10.0.0",
"autoprefixer": "^10.4.0",
"cypress": "^9.3.1",
"eslint": "^8.5.0",
"eslint-plugin-cypress": "^2.12.1",
"eslint-plugin-vue": "^8.2.0",
"jsdom": "^19.0.0",
"postcss": "^8.4.5",
"prettier": "^2.5.1",
"prettier-plugin-tailwindcss": "^0.1.4",
"start-server-and-test": "^1.14.0",
"tailwindcss": "^3.0.8",
"typescript": "~4.5.4",
"unplugin-auto-import": "^0.5.5",
"unplugin-icons": "^0.13.0",
"unplugin-vue-components": "^0.17.11",
"vite": "^2.7.7",
"vite-plugin-purge-icons": "^0.7.0",
"vitest": "^0.2.5",
"vue-tsc": "^0.29.8"
}
}