forked from LayoutitStudio/layoutit-grid
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.03 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
{
"name": "layoutit-grid",
"version": "1.2.3",
"license": "MIT",
"scripts": {
"dev": "vite",
"start": "vite",
"build": "vite build",
"lint": "eslint --ext .js,.vue src",
"lint:fix": "eslint --ext .js,.vue src --fix"
},
"dependencies": {
"@vueuse/core": "^4.0.0-beta.16",
"lodash-es": "4.17.15",
"pepjs": "0.5.2",
"vue": "^v3.0.0",
"vue-composable": "^1.0.0-beta.10"
},
"devDependencies": {
"@vue/compiler-sfc": "^v3.0.0",
"babel-eslint": "^10.1.0",
"eslint": "^7.10.0",
"eslint-config-prettier": "^6.12.0",
"eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-vue": "^7.0.0-beta.4",
"husky": "^4.3.0",
"lint-staged": "^10.4.0",
"prettier": "^2.1.2",
"sass": "1.26.10",
"vite": "^v1.0.0-rc.4"
},
"bugs": {
"url": "https://github.com/leniolabs/layoutit-grid/issues"
},
"lint-staged": {
"src/**/*.{js,vue}": [
"eslint --fix",
"prettier --write"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}