forked from johannschopplich/petite-vue-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 959 Bytes
/
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
{
"private": "true",
"scripts": {
"dev": "vite",
"build": "vite build",
"serve": "vite preview",
"lint": "eslint \"src/**/*.ts\"",
"lint:fix": "npm run lint -- --fix",
"format": "prettier --write \"src/**/*.ts\"",
"prepare": "husky install"
},
"lint-staged": {
"src/**/*.ts": [
"eslint",
"prettier --write"
]
},
"dependencies": {
"@vue/reactivity": "^3.2.21",
"petite-vue": "^0.3.0"
},
"devDependencies": {
"@types/node": "^16.11.6",
"@types/tailwindcss": "^2.2.3",
"@typescript-eslint/eslint-plugin": "^5.3.0",
"@typescript-eslint/parser": "^5.3.0",
"autoprefixer": "^10.4.0",
"eslint": "^8.1.0",
"eslint-config-prettier": "^8.3.0",
"husky": "^7.0.4",
"lint-staged": "^11.2.6",
"postcss": "^8.3.11",
"prettier": "^2.4.1",
"tailwindcss": "^2.2.19",
"typescript": "^4.4.4",
"vite": "^2.6.13",
"vite-plugin-html": "^2.1.1"
}
}