-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
82 lines (82 loc) · 2.31 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "DeviensDev",
"version": "1.0.2",
"description": "DeviensDev le site pour découvrir les métiers du développement",
"author": "Alexandre Bourdeaud'hui <alexandre@oclock.io>",
"license": "MIT",
"engines": {
"node": ">=8.0.0",
"yarn": ">=1.3.2"
},
"scripts": {
"start": "gatsby develop",
"build": "gatsby build",
"lint": "eslint --fix '{src,tests}/**/*.js'",
"pretty": "prettier --write '{src,tests}/**/*.js'",
"test": "echo \"Error: no test specified\""
},
"husky": {
"hooks": {
"pre-commit": "lint-staged && yarn test"
}
},
"lint-staged": {
"*.{js,jsx}": [
"prettier --write",
"eslint --fix",
"git add"
],
"*.{md,yaml,yml}": [
"prettier --write",
"git add"
]
},
"resolutions": {
"@babel/core": "7.12.0"
},
"dependencies": {
"disqus-react": "^1.0.5",
"emotion": "^9.2.10",
"emotion-server": "^9.2.10",
"gatsby": "2.32.4",
"gatsby-image": "^2.2.31",
"gatsby-plugin-google-analytics": "^2.1.25",
"gatsby-plugin-manifest": "^2.2.27",
"gatsby-plugin-react-helmet": "^3.1.14",
"gatsby-plugin-remove-serviceworker": "^1.0.0",
"gatsby-plugin-sharp": "^2.2.37",
"gatsby-plugin-sitemap": "^2.2.20",
"gatsby-remark-copy-linked-files": "^2.1.29",
"gatsby-remark-images": "^3.1.30",
"gatsby-remark-prismjs": "^3.3.22",
"gatsby-remark-smartypants": "^2.1.15",
"gatsby-source-filesystem": "^2.1.36",
"gatsby-transformer-remark": "^2.6.33",
"gatsby-transformer-sharp": "^2.3.3",
"lodash.isequal": "^4.5.0",
"prismjs": "^1.21.0",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-emotion": "^9.2.10",
"react-helmet": "^5.2.0",
"react-share": "^2.3.1",
"react-syntax-highlighter": "^8.0.1"
},
"devDependencies": {
"babel-eslint": "^10.0.3",
"babel-plugin-emotion": "^9.2.9",
"eslint": "^7.20.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-prettier": "^8.0.0",
"eslint-plugin-graphql": "^4.0.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-react": "^7.6.1",
"eslint-webpack-plugin": "^2.5.2",
"gatsby-plugin-eslint": "^3.0.0",
"husky": "^1.3.1",
"lint-staged": "^8.1.0",
"prettier": "^1.14.3"
}
}