-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
48 lines (48 loc) · 1.2 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
{
"name": "fookeys",
"version": "0.0.0",
"license": "MIT",
"author": "nasubi",
"private": true,
"engines": {
"node": ">=18.x"
},
"scripts": {
"dev": "vite",
"build": "run-p type-check build-only",
"preview": "vite preview",
"build-only": "vite build",
"type-check": "vue-tsc --noEmit",
"lint": "eslint --ext .vue,.ts src/",
"check": "run-s type-check lint fmt",
"fmt": "prettier --write src/"
},
"devDependencies": {
"@types/lodash": "^4.14.201",
"@typescript-eslint/eslint-plugin": "^5.58.0",
"@typescript-eslint/parser": "^5.58.0",
"@vitejs/plugin-vue": "^4.0.0",
"@vue/tsconfig": "^0.1.3",
"@vueuse/sound": "^2.0.1",
"autoprefixer": "^10.4.14",
"eslint": "^8.38.0",
"eslint-plugin-vue": "^9.10.0",
"firebase": "^9.22.1",
"lodash": "^4.17.21",
"notivue": "^1.0.5",
"npm-run-all": "^4.1.5",
"pinia": "^2.0.34",
"postcss": "^8.4.21",
"tailwindcss": "^3.2.7",
"tailwindcss-animated": "^1.0.1",
"typescript": "~4.8.4",
"vite": "^4.1.4",
"vue": "^3.3.3",
"vue-router": "^4.1.6",
"vue-tsc": "^1.2.0"
},
"dependencies": {
"@vueuse/core": "^11.3.0",
"prettier": "^3.3.3"
}
}