-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 1.99 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 1.99 KB
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
{
"name": "app-starter",
"version": "1.2.0",
"type": "module",
"description": "",
"scripts": {
"start": "vite --host",
"build": "vite build",
"lint": "eslint . && prettier . --check && npm run typecheck",
"typecheck": "vue-tsc --build",
"format": "prettier . --write && eslint . --fix",
"postversion": "git push --follow-tags",
"prepare": "husky"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^6.5.2",
"@fortawesome/free-brands-svg-icons": "^6.5.2",
"@fortawesome/free-solid-svg-icons": "^6.5.2",
"@fortawesome/vue-fontawesome": "^3.0.6",
"@intlify/unplugin-vue-i18n": "^4.0.0",
"@lucien144/vue3-parallaxy": "^0.1.2",
"@soerenmartius/vue3-clipboard": "^0.1.2",
"@vercel/analytics": "^1.2.2",
"animejs": "^3.2.2",
"bs58": "^5.0.0",
"undici": "^6.13.0",
"vue": "^3.4.23",
"vue-i18n": "^9.12.1",
"vue-next-breakpoints": "^1.0.1",
"vue-router": "^4.3.1",
"vue-toastification": "^2.0.0-rc.5",
"vue-universal-modal": "^1.1.4"
},
"devDependencies": {
"@eslint/js": "^9.39.1",
"@iconify-json/noto": "^1.1.18",
"@types/node": "^20.12.7",
"@vitejs/plugin-vue": "^5.0.4",
"@vue/language-plugin-pug": "^2.0.13",
"eslint": "^9.39.1",
"eslint-config-prettier": "^10.1.2",
"eslint-plugin-import": "^2.31.0",
"globals": "^16.5.0",
"husky": "^9.1.7",
"lint-staged": "^16.2.6",
"prettier": "^3.5.3",
"pug": "^3.0.2",
"stylus": "^0.63.0",
"typescript-eslint": "^8.46.4",
"unplugin-icons": "^0.18.5",
"vite": "^5.2.9",
"vite-plugin-node-polyfills": "^0.21.0",
"vite-plugin-pwa": "^0.19.8",
"vite-plugin-wasm": "^3.3.0",
"vue-eslint-parser": "^10.2.0",
"vue-tsc": "^2.0.13"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"prettier --write",
"eslint --fix"
],
"*.json": "prettier --write",
"*.md": "prettier --write",
"*.yml": "prettier --write"
}
}