-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.45 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": "vite-project",
"version": "0.0.0",
"scripts": {
"dev": "vite",
"build": "vite build",
"tsc": "vuedx-typecheck .",
"serve": "vite preview",
"lint": "eslint '*/**/*.{js,ts,tsx,vue}' --quiet --fix",
"start": "node_modules/netlify-cli/bin/run dev"
},
"dependencies": {
"@headlessui/vue": "^1.4.2",
"@vueuse/core": "^4.11.2",
"airtable": "^0.10.1",
"axios": "^0.21.4",
"fuse.js": "^6.4.6",
"motion": "^10.4.0",
"vue-meta": "^3.0.0-alpha.9",
"vue-router": "^4.0.12"
},
"devDependencies": {
"@netlify/functions": "^0.10.0",
"@tailwindcss/typography": "^0.4.1",
"@types/node": "^14.17.34",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"@vitejs/plugin-vue": "^1.10.1",
"@vue/compiler-sfc": "^3.2.23",
"@vuedx/typecheck": "^0.6.0",
"@vuedx/typescript-plugin-vue": "^0.6.3",
"autoprefixer": "^10.4.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.1",
"eslint-plugin-vue": "^7.20.0",
"netlify-cli": "^3.39.4",
"path": "^0.12.7",
"postcss": "^8.4.4",
"prettier": "^2.5.0",
"tailwindcss": "^2.2.19",
"ts-node-dev": "^1.1.8",
"typescript": "^4.5.2",
"vite": "^2.6.14",
"vue": "^3.2.23"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,ts,tsx}": [
"eslint --fix"
]
}
}