-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
105 lines (105 loc) · 3.06 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
{
"name": "cra-template-fleonard-starter",
"version": "0.1.3",
"license": "MIT",
"author": "Francesco Leonardi <[email protected]>",
"main": "template.json",
"description": "My starter toolkit for Create React App template with React Router, Redux, TypeScript, StyledComponents, MaterialUI and React Testing Library",
"keywords": [
"react",
"create-react-app",
"cra-template",
"template",
"typescript",
"redux",
"react-redux",
"react-router",
"react-router-dom",
"styled-components",
"material-ui",
"jest",
"react-testing-library",
"eslint",
"prettier"
],
"files": [
"template",
"template.json"
],
"repository": {
"type": "git",
"url": "https://github.com/fleonard/cra-template-fleonard-starter",
"directory": "/"
},
"bugs": {
"url": "https://github.com/fleonard/cra-template-fleonard-starter/issues"
},
"dependencies": {
"@material-ui/core": "^4.10.2",
"@material-ui/icons": "^4.9.1",
"@material-ui/lab": "^4.0.0-alpha.56",
"axios": "^0.21.1",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-redux": "^7.2.0",
"react-router-dom": "^5.2.0",
"react-scripts": "^3.4.1",
"redux": "^4.0.5",
"redux-mock-store": "^1.5.4",
"styled-components": "^5.1.1"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.10.1",
"@testing-library/react": "^10.3.0",
"@testing-library/user-event": "^12.0.2",
"@types/enzyme": "^3.10.5",
"@types/enzyme-adapter-react-16": "^1.0.6",
"@types/jest": "^26.0.0",
"@types/node": "^14.0.13",
"@types/react": "^16.9.38",
"@types/react-dom": "^16.9.8",
"@types/react-redux": "^7.1.9",
"@types/react-router-dom": "^5.1.5",
"@types/redux-mock-store": "^1.0.2",
"@types/styled-components": "^5.1.0",
"eslint-config-prettier": "^6.11.0",
"eslint-config-react-app": "^5.2.1",
"eslint-plugin-import": "^2.21.2",
"jest-environment-jsdom-sixteen": "^1.0.3",
"jest-junit": "^10.0.0",
"jest-styled-components": "^7.0.2",
"mutationobserver-shim": "^0.3.7",
"node-sass": "^4.14.1",
"stylelint": "^13.6.1",
"stylelint-config-recommended": "^3.0.0",
"stylelint-config-styled-components": "^0.1.1",
"stylelint-processor-styled-components": "^1.10.0",
"typescript": "^3.9.5"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test --env=jsdom-sixteen",
"test:ci": "CI=true react-scripts test --reporters=default --reporters=jest-junit",
"lint:js": "eslint 'src/**/*.{ts,tsx}'",
"lint:js:fix": "eslint 'src/**/*.{ts,tsx}' --fix",
"lint:css": "stylelint './src/**/*.{ts,js}'",
"lint:all": "$npm_execpath run lint:js; $npm_execpath run lint:css",
"eject": "react-scripts eject"
},
"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"
]
}
}