forked from open-eats/openeats-web
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
105 lines (105 loc) · 3.22 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
{
"name": "ownrecipes-web",
"version": "3.4.0",
"private": false,
"scripts": {
"analyze": "source-map-explorer 'build/static/js/*.js'",
"build": "react-scripts build",
"build:prod": "sh -c 'env-cmd -f .env.${REACT_APP_ENV} react-scripts build'",
"lint": "eslint \"./src/**/*.{ts,tsx}\"",
"lint:fix": "eslint \"./src/**/*.{ts,tsx}\" --fix",
"start": "react-scripts start",
"test": "react-scripts test",
"test:debug": "react-scripts --inspect-brk test --runInBand --no-cache",
"locales": "NODE_ENV=development extract-messages -l=de,en,es,fr -o src/locale -d en --flat true 'src/**/!(*.test).{ts,tsx}'"
},
"author": {
"name": "Frank \"Roy\" Hartung"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ownrecipes/ownrecipes-web.git"
},
"bugs": {
"url": "https://github.com/ownrecipes/ownrecipes-web/issues"
},
"keywords": [
"openeats",
"recipes",
"foss"
],
"devDependencies": {
"@babel/plugin-proposal-private-property-in-object": "^7.21.11",
"@babel/preset-react": "^7.25.9",
"@babel/preset-typescript": "^7.26.0",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.0.1",
"@testing-library/user-event": "^14.5.2",
"@types/dom-screen-wake-lock": "^1.0.3",
"@types/jest": "^29.5.14",
"@types/lodash-es": "^4.17.12",
"@types/node": "^22.9.0",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@types/react-router-dom": "^5.3.3",
"@types/react-test-renderer": "^18.3.0",
"@types/superagent": "^8.1.9",
"@types/webpack-env": "^1.18.5",
"@types/webscopeio__react-textarea-autocomplete": "^4.7.5",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"env-cmd": "^10.1.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-import-resolver-typescript": "3.6.1",
"eslint-plugin-compat": "^6.0.1",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jest": "27.9.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-react": "^7.37.2",
"extract-react-intl-messages": "^4.1.1",
"lodash": "^4.17.21",
"react-dev-utils": "^12.0.0",
"react-inject-env": "^2.1.0",
"react-scripts": "5.0.1",
"react-test-renderer": "^18.3.1",
"source-map-explorer": "^2.5.3",
"typescript": "4.9.5"
},
"dependencies": {
"@webscopeio/react-textarea-autocomplete": "^4.9.2",
"bootstrap-icons": "^1.11.3",
"classnames": "^2.5.1",
"final-form": "^4.20.10",
"history": "^5.2.0",
"jwt-decode": "^3.1.2",
"lodash-es": "^4.17.21",
"moment": "^2.30.1",
"react": "^18.3.1",
"react-beforeunload": "^2.6.0",
"react-bootstrap": "^2.10.5",
"react-datetime": "^3.2.0",
"react-dom": "^18.3.1",
"react-final-form": "^6.5.9",
"react-intl": "6.6.2",
"react-redux": "8.1.3",
"react-router": "6.3.0",
"react-router-dom": "6.3.0",
"react-select": "^5.8.3",
"redux": "4.2.1",
"redux-thunk": "2.4.2",
"superagent": "^10.1.1",
"superagent-defaults": "^0.1.14"
},
"browserslist": [
">0.2%",
"Firefox ESR",
"last 2 years",
"not dead",
"not op_mini all"
],
"jest": {
"moduleNameMapper": {
"^lodash-es$": "lodash"
}
}
}