-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
48 lines (48 loc) · 1.5 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
{
"private": true,
"scripts": {
"dev": "nuxi dev",
"build": "nuxi build",
"generate": "nuxt generate",
"preview": "nuxt preview",
"start": "node .output/server/index.mjs",
"type-check": "tsc --project tsconfig.json --pretty --noEmit",
"lint:js": "eslint --ext \".js,.ts,.vue\" --ignore-path .gitignore .",
"lint": "yarn lint:js",
"format": "prettier --write .",
"format-check": "prettier -- --list-different"
},
"devDependencies": {
"@babel/eslint-parser": "^7.15.8",
"@fontsource/work-sans": "^4.5.1",
"@headlessui/vue": "^1.4.1",
"@iconify-json/heroicons-solid": "^1.0.1",
"@nuxtjs/eslint-config-typescript": "^6.0.1",
"@supabase/supabase-js": "^1.29.4",
"autoprefixer": "^10.3.7",
"daisyui": "^1.16.0",
"eslint": "^8.1.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^7.0.4",
"lint-staged": "^11.2.3",
"npm-run-all": "^4.1.5",
"nuxt": "npm:nuxt3@latest",
"postcss": "^8.3.11",
"prettier": "^2.4.1",
"tailwindcss": "^2.2.17",
"typescript": "^4.4.4",
"unplugin-icons": "^0.12.16"
},
"dependencies": {},
"husky": {
"hooks": {
"pre-commit": "CI=1 npm-run-all --parallel type-check && lint-staged"
}
},
"lint-staged": {
"*.+(js|json|ts|vue)": [
"yarn run format"
]
}
}