-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
67 lines (67 loc) · 2.21 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
59
60
61
62
63
64
65
66
67
{
"name": "beerbet",
"version": "1.2.0",
"scripts": {
"dev": "vite --port 3000",
"dev:emulator": "vite --port 3000 --mode=emulator",
"dev:staging": "vite --port 3000 --mode=staging",
"build": "run-p type-check build-only",
"build:staging": "run-p type-check build-only:staging",
"preview": "vite preview --port 3000",
"test:unit": "vitest --environment jsdom",
"test:e2e": "cypress run",
"build-only": "vite build",
"build-only:staging": "vite build --mode=staging",
"type-check": "vue-tsc --noEmit -p tsconfig.vitest.json --composite false",
"lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix --ignore-path .gitignore",
"supabase:start": "supabase start",
"supabase:function": "supabase functions serve end-bet --env-file .env.local",
"supabase:stop": "supabase stop",
"supabase": "supabase",
"cypress": "cypress",
"cypress:open": "cypress open",
"cypress:run": "cypress run",
"transform:chouquette": "npx metamorphe transform chouquette",
"save:chouquette": "npx metamorphe save chouquette"
},
"dependencies": {
"@onesignal/onesignal-vue3": "^1.0.2",
"@supabase/supabase-js": "^2.21.0",
"browser-image-compression": "^2.0.2",
"chart.js": "^4.4.0",
"colord": "^2.9.3",
"pinia": "^2.0.35",
"primeicons": "^6.0.1",
"primevue": "^3.29.0",
"sass": "^1.63.3",
"sass-loader": "^13.3.2",
"vue": "^3.2.47",
"vue-i18n": "^9.2.2",
"vue-router": "^4.1.6",
"vue-spinner": "^1.0.4"
},
"devDependencies": {
"@rushstack/eslint-patch": "^1.3.2",
"@types/jsdom": "^21.1.1",
"@types/node": "^18.15.11",
"@vitejs/plugin-vue": "^3.2.0",
"@vue/eslint-config-prettier": "^7.1.0",
"@vue/eslint-config-typescript": "^11.0.0",
"@vue/test-utils": "^2.0.2",
"@vue/tsconfig": "^0.1.3",
"cypress": "^13.1.0",
"dotenv": "^16.0.3",
"eslint": "8.39.0",
"eslint-plugin-vue": "^9.11.0",
"jsdom": "^21.1.1",
"npm-run-all": "^4.1.5",
"prettier": "^2.8.8",
"supabase": "^1.88.0",
"typescript": "~5.0.4",
"vite": "^3.2.7",
"vite-plugin-pwa": "^0.14.7",
"vite-plugin-sitemap": "^0.4.2",
"vitest": "^0.32.0",
"vue-tsc": "^0.40.7"
}
}