This repository has been archived by the owner on Jun 11, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.66 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
58
59
60
61
{
"name": "@louay/my-website",
"description": "Louay's personal website",
"private": true,
"version": "1.0.0",
"author": "Louay Alakkad <[email protected]>",
"dependencies": {
"@babel/core": "^7.13.10",
"babel-preset-gatsby": "^1.0.0",
"caniuse-lite": "^1.0.30001200",
"gatsby": "^2.15.28",
"gatsby-plugin-extract-schema": "0.0.5",
"gatsby-plugin-layout": "^1.1.13",
"gatsby-plugin-manifest": "^2.2.20",
"gatsby-plugin-react-helmet": "^3.1.10",
"gatsby-plugin-remove-serviceworker": "^1.0.0",
"gatsby-plugin-sass": "^2.1.17",
"gatsby-plugin-sharp": "^2.2.32",
"gatsby-plugin-sitemap": "^2.2.19",
"gatsby-remark-component": "^1.1.3",
"gatsby-remark-images": "^3.1.28",
"gatsby-source-filesystem": "^2.1.33",
"gatsby-transformer-remark": "^2.6.30",
"node-sass": "^4.12.0",
"prop-types": "^15.7.2",
"react": "^16.10.0",
"react-dom": "^16.10.0",
"react-helmet": "^5.2.1",
"react-transition-group": "^4.3.0",
"rehype-react": "^4.0.1",
"serve": "^11.3.2"
},
"devDependencies": {
"@babel/eslint-parser": "^7.13.10",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-react": "^7.22.0",
"eslint-plugin-react-hooks": "^2.5.1",
"husky": "^3.1.0",
"lint-staged": "^9.5.0",
"prettier": "^1.19.1"
},
"scripts": {
"build": "gatsby build",
"develop": "gatsby develop",
"format": "eslint --fix '**/*.js'",
"lint": "eslint '**/*.js'"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"eslint --fix",
"git add"
]
}
}