forked from ocf/ocfstatic
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.46 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": "ocf",
"private": true,
"scripts": {
"build": "gridsome build",
"develop": "gridsome develop",
"explore": "gridsome explore",
"lint": "npm run format && eslint --ext .vue,.js . --fix",
"format": "prettier --write '**/*.{vue,js,scss,css,json,md}'"
},
"dependencies": {
"@gridsome/plugin-sitemap": "^0.4.0",
"@gridsome/remark-prismjs": "^0.5.0",
"@gridsome/source-filesystem": "^0.6.2",
"@gridsome/transformer-remark": "^0.6.4",
"@mdi/font": "^5.9.55",
"axios": "^0.21.4",
"axios-auth-refresh": "^3.2.2",
"buefy": "^0.9.17",
"bulma": "^0.9.3",
"bulma-divider": "^0.2.0",
"bulma-timeline": "^3.0.5",
"gridsome": "^0.7.23",
"gridsome-plugin-flexsearch": "^1.1.0",
"keycloak-js": "^11.0.3",
"md5": "^2.3.0",
"sass": "^1.49.9",
"scrollreveal": "^4.0.9",
"vue-cal": "^3.10.1",
"vue-gravatar": "^1.4.1"
},
"devDependencies": {
"babel-eslint": "^10.1.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-gridsome": "^1.6.2",
"eslint-plugin-vue": "^7.20.0",
"husky": "^4.3.8",
"lint-staged": "^10.5.4",
"sass-loader": "^10.2.1",
"vue-eslint-parser": "^7.11.0",
"vue-svg-loader": "^0.16.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{vue,js,scss,css,json,md}": [
"prettier --write"
],
"*.{vue,js}": [
"eslint --fix --ignore-pattern"
]
}
}