-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.15 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
{
"name": "portfolio",
"version": "3.0.0",
"description": "Wilson's portfolio",
"scripts": {
"test": "echo 'test'",
"develop": "gridsome develop",
"build": "gridsome build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/wilsonj806/portfolio.git"
},
"author": "Wilson",
"license": "ISC",
"bugs": {
"url": "https://github.com/wilsonj806/portfolio/issues"
},
"homepage": "https://github.com/wilsonj806/portfolio#readme",
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^1.2.27",
"@fortawesome/free-brands-svg-icons": "^5.12.1",
"@fortawesome/free-solid-svg-icons": "^5.12.1",
"@fortawesome/vue-fontawesome": "^0.1.9",
"@gridsome/vue-remark": "^0.1.9",
"gridsome": "^0.7.12"
},
"devDependencies": {
"eslint": "^7.2.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-gridsome": "^1.4.12",
"eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-vue": "^7.0.0-alpha.6",
"husky": "^4.2.5",
"lint-staged": "^10.2.10"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": "eslint --cache --fix"
}
}