-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.12 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
{
"name": "gabedunn.dev",
"version": "0.0.0",
"license": "MIT",
"scripts": {
"dev": "vite",
"build": "vite build",
"lint": "eslint --ext .js,.vue --ignore-path .gitignore ./src",
"lint:fix": "eslint --ext .js,.vue --ignore-path .gitignore --fix ./src"
},
"dependencies": {
"@tailwindcss/ui": "^0.3.1",
"vue": "^3.0.0-beta.15",
"vue-router": "next"
},
"devDependencies": {
"@tailwindcss/typography": "^0.2.0",
"@vue/compiler-sfc": "^3.0.0-beta.15",
"autoprefixer": "^9.8.5",
"babel-eslint": "^10.1.0",
"eslint": "^7.4.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-vue": "next",
"husky": "^4.2.5",
"lint-staged": "^10.2.11",
"lodash": "^4.17.19",
"postcss-nested": "^4.2.3",
"postcss-preset-env": "^6.7.0",
"prettier": "^2.0.5",
"tailwindcss": "^1.5.1",
"vite": "^1.0.0-beta.3"
},
"lint-staged": {
"*.{js,vue}": "yarn lint"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"packageManager": "[email protected]+sha1.c85a4305534f76d461407b59277b954bac97b5c4"
}