-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.65 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
{
"name": "easy-river",
"private": true,
"type": "module",
"author": "Francesco Morselli <[email protected]>",
"scripts": {
"preinstall": "npx only-allow bun",
"test": "vitest",
"build": "nuxt build",
"dev": "nuxt dev",
"generate": "nuxt generate",
"preview": "nuxt preview",
"postinstall": "nuxt prepare",
"typecheck": "nuxt typecheck",
"lint": "eslint --ext .ts,.js,.vue,.tsx --ignore-path .gitignore . --fix",
"prettier": "prettier --write \"./src/**/*.{ts,tsx,js,vue}\"",
"prettier:check": "prettier --check \"./src/**/*.{ts,tsx,js,vue}\"",
"prepare": "husky",
"vercel-build": "NODE_ENV=production nuxt build"
},
"devDependencies": {
"@nuxtjs/eslint-config-typescript": "^12.1.0",
"@pinia/nuxt": "^0.5.1",
"@tailwindcss/forms": "^0.5.7",
"@tailwindcss/typography": "^0.5.10",
"@typescript-eslint/eslint-plugin": "^7.1.0",
"@vueuse/core": "^10.9.0",
"@vueuse/nuxt": "^10.9.0",
"autoprefixer": "^10.4.18",
"cssnano": "^6.0.5",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-vue": "^9.22.0",
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"pinia": "^2.1.7",
"postcss": "^8.4.35",
"prettier": "^3.2.5",
"prettier-plugin-tailwindcss": "^0.5.11",
"tailwindcss": "^3.4.1",
"vue-tsc": "^2.0.2"
},
"dependencies": {
"@upstash/redis": "^1.28.4",
"date-fns": "^3.3.1",
"nuxt": "^3.10.3",
"vue": "^3.4.19",
"vue-router": "^4.3.0"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,vue}": [
"eslint --cache --fix",
"prettier --write"
]
}
}