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.81 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.3.1",
"gatsby": "^3.4.1",
"gatsby-image": "^3.4.0",
"gatsby-plugin-catch-links": "^3.4.0",
"gatsby-plugin-google-analytics": "^3.4.0",
"gatsby-plugin-manifest": "^3.4.0",
"gatsby-plugin-offline": "^4.4.0",
"gatsby-plugin-react-helmet": "^4.4.0",
"gatsby-plugin-robots-txt": "^1.5.6",
"gatsby-plugin-sharp": "^3.4.1",
"gatsby-plugin-sitemap": "^4.0.0",
"gatsby-source-filesystem": "^3.4.0",
"gatsby-transformer-remark": "^4.1.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"
},
"devDependencies": {
"eslint-config-airbnb": "^18.2.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0",
"netlify-cli": "^3.26.2",
"pre-commit": "^1.2.2",
"prettier": "^2.2.1"
},
"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"
}
}