-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.72 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
{
"name": "mc-resume",
"version": "4.1.0",
"description": "Matthieu Compérat Resume, Web & Mobile Lead Programmer",
"repository": {
"type": "git",
"url": "[email protected]:Mitchnsun/mcomperat.git"
},
"author": "Matthieu Compérat",
"license": "ISC",
"homepage": "http://www.mcomper.at",
"dependencies": {
"gatsby": "^3.4.1",
"gatsby-plugin-gtag": "^1.0.13",
"gatsby-plugin-offline": "^4.4.0",
"gatsby-plugin-react-helmet": "^4.4.0",
"gatsby-plugin-sharp": "^3.4.1",
"gatsby-plugin-styled-jsx": "^4.4.0",
"gatsby-source-filesystem": "^3.4.0",
"gatsby-transformer-json": "^3.4.0",
"gatsby-transformer-sharp": "^3.4.0",
"prop-types": "^15.7.2",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-helmet": "^6.1.0",
"styled-jsx": "^3.3.0",
"uuid": "^8.3.2"
},
"devDependencies": {
"eslint": "^7.25.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-react": "^7.23.2",
"eslint-plugin-react-hooks": "^4.2.0",
"husky": "^6.0.0",
"lint-staged": "^10.5.4",
"prettier": "^2.2.1"
},
"keywords": [
"gatsby"
],
"scripts": {
"dev": "npm run develop",
"build": "gatsby build",
"heroku-postbuild": "gatsby build",
"develop": "gatsby develop",
"format": "prettier --write \"**/*.{js,jsx,json,md}\"",
"start": "npm run develop",
"serve": "gatsby serve",
"clean": "gatsby clean",
"test": "npm run lint && echo \"Write tests! -> https://gatsby.dev/unit-testing\" && exit 1",
"lint": "eslint --cache --ext .js ."
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
}
}