-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.6 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
{
"name": "anki-adder-simple",
"version": "0.1.0",
"private": true,
"dependencies": {
"@semantic-ui-react/css-patch": "1.1.3",
"@testing-library/jest-dom": "6.6.3",
"@testing-library/react": "14.3.1",
"@testing-library/user-event": "14.5.2",
"@types/chrome": "0.0.279",
"@types/react": "18.3.12",
"@types/react-dom": "18.3.1",
"axios": "1.7.7",
"react": "18.3.1",
"react-csv": "2.2.2",
"react-dom": "18.3.1",
"react-redux": "8.1.3",
"react-router-dom": "6.27.0",
"react-scripts": "5.0.1",
"redux": "4.2.1",
"redux-thunk": "2.4.2",
"semantic-ui-css": "2.5.0",
"semantic-ui-react": "2.1.5"
},
"scripts": {
"start": "react-scripts start",
"prebuild": "rimraf build/static",
"build": "npm-run-all build:*",
"build:app": "INLINE_RUNTIME_CHUNK=false react-scripts build",
"build:bg": "webpack --config ./config/webpack.background.js",
"test": "react-scripts test",
"eject": "react-scripts eject",
"postinstall": "semantic-ui-css-patch"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@types/react-csv": "1.1.10",
"@types/react-redux": "7.1.34",
"@types/react-router-dom": "5.3.3",
"npm-run-all": "4.1.5",
"rimraf": "5.0.10",
"source-map-loader": "4.0.2",
"ts-loader": "8.4.0",
"typescript": "4.9.5",
"webpack-cli": "5.1.4"
}
}