-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
61 lines (61 loc) · 2.01 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
{
"name": "werewolf-card-dealer",
"version": "1.0.0",
"scripts": {
"dev": "vite",
"build": "run-p type-check build-only",
"preview": "vite preview",
"test:unit": "vitest --environment jsdom --root src/",
"test:e2e": "start-server-and-test preview http://localhost:4173 'cypress run --e2e'",
"test:e2e:dev": "start-server-and-test 'vite dev --port 4173' :4173 'cypress open --e2e'",
"build-only": "vite build",
"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"
},
"dependencies": {
"@tabler/icons-vue": "2.38.0",
"@vueuse/core": "10.4.1",
"pinia": "2.1.6",
"qrcode.vue": "3.4.1",
"vue": "3.3.4",
"vue-final-modal": "4.4.5",
"vue-i18n": "9.5.0",
"vue-router": "4.2.5",
"vue3-popper": "1.5.0"
},
"devDependencies": {
"@intlify/eslint-plugin-vue-i18n": "2.0.0",
"@intlify/unplugin-vue-i18n": "1.4.0",
"@rushstack/eslint-patch": "1.5.1",
"@tsconfig/node20": "20.1.2",
"@types/jsdom": "21.1.3",
"@types/node": "20.8.10",
"@vitejs/plugin-vue": "4.4.0",
"@vue/eslint-config-prettier": "8.0.0",
"@vue/eslint-config-typescript": "12.0.0",
"@vue/test-utils": "2.4.1",
"@vue/tsconfig": "0.4.0",
"cypress": "13.4.0",
"eslint": "8.50.0",
"eslint-plugin-cypress": "2.15.1",
"eslint-plugin-vue": "9.17.0",
"jsdom": "22.1.0",
"npm-run-all": "4.1.5",
"prettier": "3.0.3",
"real-vh": "1.0.0",
"sass": "1.68.0",
"start-server-and-test": "2.0.1",
"stylelint": "15.10.3",
"stylelint-config-idiomatic-order": "9.0.0",
"stylelint-config-prettier-scss": "1.0.0",
"stylelint-config-sass-guidelines": "10.0.0",
"stylelint-config-standard-scss": "11.0.0",
"stylelint-config-standard-vue": "1.0.0",
"stylelint-order": "6.0.3",
"typescript": "5.2.2",
"vite": "4.5.0",
"vite-plugin-pwa": "0.16.5",
"vitest": "0.34.6",
"vue-tsc": "1.8.15"
}
}