This repository has been archived by the owner on Apr 30, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 231
/
package.json
61 lines (61 loc) · 1.58 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": "cra-template-redux",
"version": "2.0.0",
"scripts": {
"format": "prettier --write ./template/src/**/*.js",
"lint": "cross-env NODE_ENV=development eslint ./template/src/**/*.js",
"test": "jest"
},
"keywords": [
"react",
"create-react-app",
"template",
"redux",
"reduxjs",
"redux-toolkit",
"react-redux"
],
"description": "The official Redux+JS template for Create React App.",
"main": "template.json",
"repository": {
"type": "git",
"url": "https://github.com/reduxjs/cra-template-redux.git"
},
"license": "MIT",
"engines": {
"node": ">=8"
},
"bugs": {
"url": "https://github.com/reduxjs/cra-template-redux/issues"
},
"files": [
"template",
"template.json"
],
"devDependencies": {
"@babel/preset-env": "^7.16.11",
"@babel/preset-react": "^7.16.7",
"@reduxjs/toolkit": "^1.8.1",
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^13.0.1",
"babel-eslint": "^10.0.3",
"babel-jest": "^27.5.1",
"babel-preset-react-app": "^10.0.1",
"cross-env": "^7.0.3",
"eslint": "^8.13.0",
"eslint-config-react-app": "^7.0.1",
"eslint-plugin-flowtype": "^8.0.3",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.29.4",
"eslint-plugin-react-hooks": "^4.4.0",
"jest": "^27.5.1",
"prettier": "^2.6.2",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"react-redux": "^8.0.0-rc.0",
"react-test-renderer": "^18.0.0",
"redux": "^4.1.2"
}
}