-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathpackage.json
122 lines (122 loc) · 3.7 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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
{
"name": "cra-template-typescript-redux",
"version": "1.0.2",
"license": "MIT",
"author": "Alexander Grischuk <[email protected]",
"engines": {
"node": ">=16.0.0 <20.0.0"
},
"main": "template.json",
"description": "A quick start Create React App template with React Router, Redux, TypeScript, React Testing Library and custom ESlint configurations",
"keywords": [
"react",
"create-react-app",
"cra-template",
"template",
"react-testing-library",
"eslint",
"redux",
"react-redux",
"react-router",
"react-router-dom",
"typescript",
"prettier"
],
"files": [
"template",
"template.json"
],
"repository": {
"type": "git",
"url": "https://github.com/alexandr-g/cra-template-typescript-redux",
"directory": "/"
},
"bugs": {
"url": "https://github.com/alexandr-g/cra-template-typescript-redux/issues"
},
"dependencies": {
"@testing-library/react": "^14.0.0",
"@types/node": "^14.0.0",
"@types/react": "^18.2.6",
"@types/react-dom": "^18.2.4",
"@types/react-redux": "^7.1.25",
"@types/react-router-dom": "^5.3.3",
"@types/redux-mock-store": "^1.0.1",
"@typescript-eslint/eslint-plugin": "^5.59.5",
"@typescript-eslint/parser": "5.9.1",
"eslint": "^8.6.0",
"eslint-config-airbnb-typescript": "^16.1.0",
"eslint-config-prettier": "^8.0.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"prettier": "^2.0.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-redux": "^8.0.5",
"react-router-dom": "^6.11.1",
"react-scripts": "^5.0.1",
"redux": "^4.2.1",
"redux-devtools-extension": "^2.13.8",
"redux-mock-store": "^1.5.4",
"typescript": "~4.5.0"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"clean-files": "rm -rf ./template/public ./template/src && rm -f ./template/.eslintignore ./template/.eslintrc ./template/.prettierrc ./template/README.md ./template/README_CRA.md ./template/tsconfig.json ./template/tsconfig.eslint.json",
"copy-files": "cp -a ./src/. template/src && cp -a ./public/. template/public && cp .eslintignore .eslintrc .prettierrc tsconfig.json tsconfig.eslint.json README.md README_CRA.md template/",
"prepublishOnly": "yarn clean-files && yarn copy-files",
"commit": "npx git-cz",
"lint": "eslint src --ext .js,.jsx,.ts,.tsx",
"fix": "eslint src --ext .js,.jsx,.ts,.tsx --fix",
"format": "prettier --write src/**/*.{ts,tsx}",
"e2e": "cypress run --env device=web"
},
"eslintConfig": {
"extends": "react-app"
},
"config": {
"commitizen": {
"path": "node_modules/cz-conventional-changelog"
}
},
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"tag": "latest",
"access": "public"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version",
">0.3%",
"not ie 11",
"not dead",
"not op_mini all"
]
},
"devDependencies": {
"@babel/runtime": "^7.21.5",
"@semantic-release/changelog": "6.0.1",
"@semantic-release/git": "10.0.1",
"@semantic-release/github": "8.0.2",
"@testing-library/jest-dom": "^5.16.5",
"codecov": "3.8.3",
"commitizen": "4.2.4",
"cypress": "^12.12.0",
"cz-conventional-changelog": "3.3.0",
"eslint-plugin-cypress": "2.13.3",
"semantic-release": "18.0.1"
}
}