forked from farmOS/farmOS.org
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.55 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
{
"name": "farmos_org",
"version": "1.0.0",
"private": true,
"description": "farmOS.org 2.x",
"author": "Jamie Gaehring",
"keywords": [
"gatsby"
],
"scripts": {
"develop": "gatsby develop",
"start": "gatsby develop",
"build": "gatsby clean && gatsby build",
"serve": "gatsby serve",
"clean": "gatsby clean",
"lint": "eslint --color --ext .js --ignore-path .gitignore ."
},
"dependencies": {
"@material-ui/core": "^4.12.3",
"@material-ui/icons": "^4.11.2",
"gatsby": "^3.14.1",
"gatsby-plugin-catch-links": "^3.14.0",
"gatsby-plugin-google-analytics": "^3.14.0",
"gatsby-plugin-image": "^1.14.0",
"gatsby-plugin-manifest": "^3.14.0",
"gatsby-plugin-react-helmet": "^4.14.0",
"gatsby-plugin-sharp": "^3.14.3",
"gatsby-plugin-sitemap": "^4.10.0",
"gatsby-remark-autolink-headers": "^4.11.0",
"gatsby-remark-images": "^4.2.0",
"gatsby-remark-prismjs": "^5.11.0",
"gatsby-source-filesystem": "^3.14.0",
"gatsby-source-git": "^1.1.0",
"gatsby-theme-material-ui": "^4.13.0",
"gatsby-transformer-remark": "^4.11.0",
"gatsby-transformer-sharp": "^3.14.0",
"js-yaml": "^4.1.0",
"prismjs": "^1.27.0",
"ramda": "^0.27.2",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-helmet": "^6.1.0"
},
"devDependencies": {
"eslint-config-react-app": "^6.0.0"
},
"eslintConfig": {
"extends": "react-app",
"globals": {
"__PATH_PREFIX__": true
},
"rules": {
"no-warning-comments": "warn",
"no-console": "warn"
}
}
}