-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
94 lines (94 loc) · 2.81 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "mimesis",
"version": "2.7.14",
"license": "AGPL-3.0-only",
"scripts": {
"prepare": "husky install",
"dev": "BRANCH=development vite",
"build": "vue-tsc --noEmit && vite build && cap copy",
"resources": "cordova-res --skip-config --copy --icon-background-source '#e67f3c'",
"sync": "cap sync",
"preview": "vite preview",
"serve": "vite preview",
"coverage": "vitest run --coverage",
"test": "vitest --ui",
"test:run": "vitest run",
"seed": "ts-node --project ./node.tsconfig.json seed_db/import_db.ts",
"types": "node ./scripts/getTypes.mjs",
"dev-types": "BRANCH=development node ./scripts/getTypes.mjs",
"lint:markup": "vue-tsc --noEmit",
"lint:pretty": "prettier src/**/*.{css,vue}",
"lint:script": "eslint --ext .ts,vue --ignore-path .gitignore ."
},
"dependencies": {
"@capacitor-community/keep-awake": "2.1.1",
"@capacitor/app": "^4.1.0",
"@capacitor/core": "^4.4.0",
"@capacitor/device": "^4.0.1",
"@capacitor/haptics": "^4.0.1",
"@capacitor/keyboard": "^4.0.1",
"@capacitor/preferences": "^4.0.1",
"@capacitor/splash-screen": "^4.1.1",
"@capacitor/status-bar": "^4.0.1",
"@capgo/capacitor-purchases": "^1.3.18",
"@capgo/capacitor-updater": "4.6.2",
"@capgo/native-audio": "^4.1.0",
"@faker-js/faker": "7.6.0",
"@headlessui/vue": "1.7.3",
"@heroicons/vue": "1.0.6",
"@intlify/vite-plugin-vue-i18n": "^6.0.3",
"@ionic/vue": "6.3.3",
"@ionic/vue-router": "6.3.3",
"@supabase/supabase-js": "2.0.4",
"canvas-confetti": "1.6.0",
"capacitor-rate-app": "^3.0.0",
"dotenv": "^16.0.3",
"pinia": "2.0.23",
"plausible-tracker": "^0.3.8",
"tslib": "^2.4.1",
"uuid": "^8.3.2",
"vue": "3.2.41",
"vue-i18n": "9.2.2",
"vue-router": "4.1.6",
"vue-timer-hook": "1.0.11",
"windicss": "3.5.6"
},
"devDependencies": {
"@antfu/eslint-config": "^0.28.0",
"@capacitor/android": "^4.4.0",
"@capacitor/cli": "^4.4.0",
"@capacitor/ios": "^4.4.0",
"@types/canvas-confetti": "^1.4.3",
"@types/jest": "29.2.1",
"@types/uuid": "8.3.4",
"@vitejs/plugin-vue": "3.2.0",
"@vitest/ui": "^0.24.4",
"@vue/test-utils": "2.2.1",
"csvtojson": "^2.0.10",
"eslint": "8.26.0",
"husky": "8.0.1",
"jest": "29.2.2",
"jest-mock-random": "^1.1.1",
"jsdom": "^20.0.2",
"lint-staged": "13.0.3",
"prettier": "2.7.1",
"ts-jest": "29.0.3",
"ts-node": "10.9.1",
"typescript": "4.8.2",
"vite": "3.2.2",
"vite-plugin-environment": "1.1.3",
"vite-plugin-windicss": "1.8.8",
"vitest": "0.24.4",
"vue-jest": "^5.0.0-alpha.10",
"vue-tsc": "1.0.9"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{ts,vue}": "eslint --fix",
"*": "prettier -w -u"
}
}