-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 824 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 824 Bytes
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
{
"name": "org.grey.software",
"version": "0.1.0",
"description": "The org website for Grey Software",
"main": "index.js",
"scripts": {
"dev": "vuepress dev",
"build": "vuepress build"
},
"author": "Grey Software",
"license": "MIT",
"devDependencies": {
"eslint": "^7.10.0",
"eslint-config-prettier": "^6.12.0",
"husky": "^4.3.0",
"lint-staged": "^10.4.0",
"prettier": "^2.1.2",
"vuepress": "^1.6.0"
},
"dependencies": {
"vue-svg-loader": "^0.16.0",
"vue-typed-js": "^0.1.2"
},
"husky": {
"hooks": {
"pre-commit": "npx lint-staged"
}
},
"lint-staged": {
"*.{json,yml}": "prettier --write",
"**/*.+(md)": "prettier --write",
"**/*.+(js|ts|css|sass|less|graphql|vue)": [
"prettier --write",
"eslint --fix"
]
}
}