This repository was archived by the owner on May 16, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
100 lines (100 loc) · 2.75 KB
/
package.json
File metadata and controls
100 lines (100 loc) · 2.75 KB
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
{
"name": "cra-template-quickstart-redux",
"version": "1.3.4",
"license": "MIT",
"engines": {
"node": ">=16"
},
"description": "Opinionated quickstart Create React App template with Redux, React Testing Library and custom eslint and stylelint configurations",
"main": "template.json",
"keywords": [
"react",
"create-react-app",
"cra-template",
"template",
"react-testing-library",
"testing-library",
"eslint",
"redux"
],
"files": [
"template",
"template.json"
],
"repository": {
"type": "git",
"url": "https://github.com/morewings/cra-template-quickstart-redux",
"directory": "/"
},
"bugs": {
"url": "https://github.com/morewings/cra-template-quickstart-redux/issues"
},
"homepage": "https://morewings.github.io/cra-template-quickstart-redux",
"dependencies": {
"@babel/runtime": "^7.23.9",
"@testing-library/jest-dom": "^5.17.0",
"@testing-library/react": "^12.1.5",
"@testing-library/react-hooks": "^8.0.1",
"@testing-library/user-event": "^14.5.2",
"axios": "^1.6.7",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-prettier": "^9.1.0",
"eslint-config-react-app": "^7.0.1",
"eslint-plugin-fp": "^2.3.0",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.3",
"identity-obj-proxy": "^3.0.0",
"lint-staged": "^15.2.1",
"npm-run-all": "^4.1.5",
"prettier": "^2.8.7",
"prop-types": "^15.8.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-redux": "^8.1.3",
"react-scripts": "5.0.1",
"react-test-renderer": "^17.0.2",
"redux": "^5.0.1",
"redux-mock-store": "^1.5.4",
"stylelint": "^14.16.1",
"stylelint-config-prettier": "^9.0.5",
"stylelint-config-standard": "^29.0.0",
"stylelint-order": "^6.0.4"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"clean:files": "node ./cleanFiles.js",
"copy:files": "node ./copyFiles.js",
"prepublishOnly": "run-s clean:files copy:files write:template",
"fix:js": "eslint --fix ./src/",
"lint:js": "eslint ./src/",
"lint:style": "stylelint ./src/**/*.css",
"fix:style": "run-s 'lint:style --fix'",
"write:template": "node ./writeTemplateConfig.js",
"prepare": "is-ci || husky install"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"is-ci": "^3.0.1",
"recursive-copy": "2.0.14",
"rimraf": "5.0.5"
},
"jest": {
"moduleNameMapper": {
"axios": "axios/dist/node/axios.cjs"
}
}
}