-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
114 lines (114 loc) · 2.8 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
{
"name": "ernte-teilen.org",
"description": "Source code for the ernte-teilen.org website",
"license": "AGPL-3.0",
"scripts": {
"dev": "gatsby develop",
"clean": "gatsby clean",
"build": "gatsby build",
"serve": "gatsby serve",
"lint": "npx eslint src/**/*.js --fix",
"pretty-quick": "npx pretty-quick --staged",
"prettier": "npx prettier 'src/**/*.js' --write",
"test": "echo no tests",
"postinstall": "husky install"
},
"engines": {
"node": "20.x",
"npm": "10.x"
},
"dependencies": {
"autoprefixer": "^9.0.1",
"browserslist": "^4.0.1",
"carbon-components": "^9.26.0",
"carbon-components-react": "^6.38.1",
"carbon-icons": "^7.0.7",
"classnames": "^2.2.6",
"dotenv": "^6.0.0",
"gatsby": "^4.15.2",
"gatsby-image": "^2.0.13",
"gatsby-plugin-image": "^2.15.1",
"gatsby-plugin-react-helmet": "^5.15.0",
"gatsby-plugin-sass": "^5.15.1",
"gatsby-plugin-sharp": "^4.15.1",
"gatsby-source-filesystem": "^4.15.0",
"gatsby-transformer-remark": "^5.15.1",
"gatsby-transformer-sharp": "^4.15.1",
"gatsby-transformer-yaml": "^4.15.0",
"lodash": "^4.17.10",
"prop-types": "^15.6.2",
"react": "^16.14.0",
"react-burger-menu": "^2.5.2",
"react-dom": "^16.14.0",
"react-helmet": "^6.1.0",
"react-responsive-carousel": "^3.1.41",
"sass": "^1.52.1",
"typeface-noto-serif": "^0.0.54",
"typeface-roboto": "^0.0.54",
"typeface-roboto-condensed": "^0.0.54"
},
"devDependencies": {
"eslint": "^7.30.0",
"eslint-config-prettier": "8.3.0",
"eslint-config-standard": "^16.0.3",
"eslint-config-standard-jsx": "^10.0.0",
"eslint-config-standard-react": "11.0.1",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-jest": "24.3.6",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.2.0",
"eslint-plugin-react": "^7.24.0",
"husky": "7.0.1",
"npm-check-updates": "11.8.3",
"postcss": "^8.4.14",
"prettier": "^2.6.2",
"pretty-quick": "3.1.1"
},
"eslintConfig": {
"ignorePatterns": [
"build/**"
],
"rules": {
"react/prop-types": 0,
"react/react-in-jsx-scope": 0,
"spaced-comment": 0,
"jsx-quotes": [
"error",
"prefer-double"
],
"no-console": [
"error",
{
"allow": [
"warn",
"error"
]
}
]
},
"settings": {
"react": {
"version": "detect"
}
},
"env": {
"jest/globals": true,
"browser": true
},
"plugins": [
"jest"
],
"extends": [
"standard",
"standard-jsx",
"standard-react",
"prettier"
]
},
"prettier": {
"tabWidth": 2,
"semi": false,
"singleQuote": true,
"jsxSingleQuote": false
}
}