-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
100 lines (100 loc) · 2.75 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
{
"name": "cra-template-brickheadz-standard",
"version": "0.0.5",
"license": "MIT",
"author": "Brickheadz <[email protected]>",
"engines": {
"node": ">=14"
},
"main": "template.json",
"description": "A quick start Create React App template with React Router, Redux, Node Sass and Linting (airbnb)",
"keywords": [
"react",
"create-react-app",
"cra-template",
"template",
"enzyme",
"eslint",
"redux",
"react-redux",
"react-router",
"react-router-dom",
"airbnb",
"node-sass",
"prettier"
],
"files": [
"template",
"template.json"
],
"repository": {
"type": "git",
"url": "https://github.com/brickheadz/cra-template-brickheadz-standard",
"directory": "/"
},
"bugs": {
"url": "https://github.com/brickheadz/cra-template-brickheadz-standard/issues"
},
"dependencies": {
"@testing-library/jest-dom": "^5.11.4",
"@testing-library/react": "^11.1.0",
"@testing-library/user-event": "^12.1.10",
"axios": "^0.21.0",
"env-cmd": "^10.1.0",
"node-sass": "^4.14.1",
"prop-types": "^15.7.2",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-redux": "^7.2.2",
"react-router": "^5.2.0",
"react-router-dom": "^5.2.0",
"react-scripts": "4.0.0",
"redux": "^4.0.5",
"redux-logger": "^3.0.6",
"redux-persist": "^6.0.0",
"redux-persist-transform-encrypt": "^3.0.1",
"redux-thunk": "^2.3.0",
"web-vitals": "^0.2.4"
},
"scripts": {
"start": "env-cmd react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"lint": "eslint --ext .js --ext .jsx.",
"lint:fix": "eslint --ext .js --ext .jsx . --fix",
"lint-warn": "eslint --ext .js --ext .jsx . -c .eslintrc.warn.json",
"clean-files": "rm -rf ./template/public ./template/src && rm -f ./template/.env ./template/.eslintignore ./template/.eslintrc ./template/.prettierrc ./template/README.md ./template/README_CRA.md",
"copy-files": "cp -a ./src/. template/src && cp -a ./public/. template/public && cp .eslintrc .prettierrc README.md README_CRA.md template/",
"prepublishOnly": "yarn clean-files && yarn copy-files",
"commit": "npx git-cz",
"eject": "react-scripts eject"
},
"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"
]
},
"config": {
"commitizen": {
"path": "node_modules/cz-conventional-changelog"
}
},
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"tag": "latest",
"access": "public"
}
}