-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
92 lines (92 loc) · 2.34 KB
/
package.json
File metadata and controls
92 lines (92 loc) · 2.34 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
{
"name": "reactizy",
"version": "8.0.0",
"description": "Reactizy is a React toolkit that simplify the life.",
"main": "./core/index.js",
"homepage": "https://pbenard73.github.io/reactizy/",
"repository": {
"type": "git",
"url": "https://github.com/pbenard73/reactizy"
},
"scripts": {
"analyze": "source-map-explorer 'build/static/js/*.js'",
"build": "rm -rf ./dist; ./node_modules/webpack/bin/webpack.js",
"doc": "react-scripts build",
"test": "jest",
"lint": "node_modules/eslint/bin/eslint.js --fix src/*",
"start": "react-scripts start"
},
"keywords": [
"react",
"toolkit",
"redux",
"redux async",
"react-redux",
"redux-thunk",
"reducer",
"architecture",
"simplify",
"easy"
],
"author": "BENARD Patrick <pbenard73@gmail.com>",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.15.0",
"@babel/plugin-proposal-class-properties": "^7.14.5",
"@babel/preset-env": "^7.15.0",
"@babel/preset-react": "^7.14.5",
"@material-ui/core": "^4.12.3",
"@material-ui/icons": "^4.11.2",
"@testing-library/jest-dom": "^5.14.1",
"@testing-library/react": "^12.0.0",
"@testing-library/user-event": "^13.2.1",
"body-parser": "^1.19.0",
"clean-webpack-plugin": "^3.0.0",
"express": "^4.17.1",
"node-sass": "^5.0.0",
"react": "^17.0.0",
"react-awesome-button": "^6.5.1",
"react-dom": "^16.13.1",
"react-router-dom": "^5.2.0",
"react-scripts": "^4.0.3",
"react-syntax-highlighter": "^15.4.4",
"react-windows-dashboard": "^0.1.6",
"source-map-explorer": "^2.5.2",
"webpack-cli": "^4.8.0",
"webpack-node-externals": "^3.0.0"
},
"dependencies": {
"@babel/polyfill": "^7.12.1",
"axios": "^0.21.1",
"prop-types": "^15.7.2",
"qs": "^6.10.1",
"react-dom": "^17.0.0",
"react-redux": "^7.2.4",
"redux": "^4.1.1",
"redux-thunk": "^2.3.0"
},
"babel": {
"plugins": [
"@babel/plugin-proposal-class-properties"
],
"presets": [
"@babel/preset-env",
"@babel/preset-react"
]
},
"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"
]
}
}