forked from zenika-open-source/oss.zenika.com
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.82 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": "insights-website",
"private": true,
"description": "Website to display awesome insights about organization open source activity",
"version": "0.1.0",
"author": "Zenika",
"dependencies": {
"classnames": "^2.2.6",
"gatsby": "^2.24.65",
"gatsby-image": "^2.4.19",
"gatsby-plugin-catch-links": "^2.3.12",
"gatsby-plugin-google-analytics": "^2.3.14",
"gatsby-plugin-manifest": "^2.4.31",
"gatsby-plugin-offline": "^3.2.28",
"gatsby-plugin-react-helmet": "^3.3.11",
"gatsby-plugin-robots-txt": "^1.5.3",
"gatsby-plugin-sharp": "^2.6.36",
"gatsby-plugin-sitemap": "^2.4.13",
"gatsby-source-filesystem": "^2.3.30",
"gatsby-transformer-remark": "^2.8.35",
"gatsby-transformer-sharp": "^2.5.15",
"prop-types": "^15.7.2",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-helmet": "^6.1.0"
},
"devDependencies": {
"eslint-config-airbnb": "^18.2.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.4",
"netlify-cli": "^2.64.1",
"pre-commit": "^1.2.2",
"prettier": "^2.1.2"
},
"keywords": [
"gatsby"
],
"homepage": "https://oss.zenika.com",
"license": "Apache 2.0",
"scripts": {
"build": "gatsby build",
"develop": "gatsby develop",
"format:check": "prettier --list-different src/**/*.{js,jsx}",
"format:fix": "prettier --write src/**/*.{js,jsx}",
"start": "npm run develop",
"serve": "gatsby serve",
"test": "echo \"Write tests! -> https://gatsby.dev/unit-testing\"",
"deploy": "netlify deploy --prod",
"lint": "eslint . --ext js --ext jsx"
},
"pre-commit": "format:check",
"repository": {
"type": "git",
"url": "https://github.com/zenika-open-source/insights-website"
},
"bugs": {
"url": "https://github.com/zenika-open-source/insights-website/issues"
}
}