-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
84 lines (84 loc) · 2.19 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
{
"name": "egon",
"version": "1.0.0",
"private": true,
"dependencies": {
"@reduxjs/toolkit": "^2.0.1",
"@testing-library/jest-dom": "^6.2.0",
"@testing-library/react": "^14.0.0",
"@testing-library/user-event": "^14.2.1",
"core-js": "^3.25.1",
"eslint-plugin-jest": "^27.0.4",
"i18next": "^23.7.16",
"i18next-browser-languagedetector": "^7.0.1",
"npm-run-all": "^4.1.5",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-focus-lock": "^2.9.4",
"react-i18next": "^14.0.0",
"react-intersection-observer": "^9.4.0",
"react-mailchimp-subscribe": "^2.1.3",
"react-redux": "^9.0.4",
"react-router-dom": "^6.4.0",
"react-router-hash-link": "^2.4.3",
"react-scripts": "^5.0.1",
"react-swipeable": "^7.0.0",
"redux": "^5.0.1",
"sass": "^1.54.9",
"sass-lint": "^1.13.1",
"web-vitals": "^3.0.2"
},
"devDependencies": {
"@babel/cli": "^7.18.10",
"@babel/core": "^7.19.1",
"@babel/eslint-parser": "^7.19.1",
"@babel/preset-env": "^7.19.1",
"@babel/preset-flow": "^7.18.6",
"@babel/preset-react": "^7.18.6",
"eslint": "^8.22.0",
"eslint-plugin-flowtype": "^8.0.3",
"eslint-plugin-react": "^7.31.8",
"flow-bin": "^0.227.0"
},
"scripts": {
"lint:es": "eslint . --ext .js,.jsx --cache",
"lint:sass": "sass-lint -v -q",
"lint": "run-p -l lint:es lint:sass",
"flow": "flow check",
"start-app": "react-scripts start",
"build-app": "react-scripts build",
"start": "run-s -l prepare start-app",
"build": "run-s -l prepare build-app",
"prepare": "python3 py-tools/generate-locales.py",
"prebuild": "run-s lint flow",
"test": "react-scripts test"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"babel": {
"plugins": [
"@babel/plugin-proposal-class-properties"
],
"presets": [
"@babel/preset-env",
"@babel/preset-flow",
"@babel/preset-react"
]
}
}