-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
102 lines (102 loc) · 3.11 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
{
"name": "test-tooltip-app",
"version": "0.1.0",
"private": true,
"dependencies": {
"@fortawesome/fontawesome-free": "^6.4.2",
"@popperjs/core": "^2.11.8",
"@reduxjs/toolkit": "^2.0.1",
"@testing-library/jest-dom": "^6.0.1",
"@testing-library/react": "^16.0.0",
"@testing-library/user-event": "^14.4.3",
"ajv": "^8.12.0",
"better-docs": "^2.7.3",
"bootstrap": "^5.3.1",
"bootstrap-icons": "^1.11.3",
"cross-env": "^7.0.3",
"crypto-js": "^4.1.1",
"email-validator": "^2.0.4",
"formik": "^2.4.4",
"http-proxy-middleware": "^3.0.0",
"jsdoc": "^4.0.2",
"jsrsasign": "^11.0.0",
"kleur": "^4.1.5",
"lodash": "^4.17.21",
"lodash.merge": "^4.6.2",
"optimize-css-assets-webpack-plugin": "^6.0.1",
"react": "^18.2.0",
"react-bootstrap": "^2.9.1",
"react-bootstrap-icons": "^1.10.3",
"react-data-grid": "^7.0.0-beta.40",
"react-data-grid-addons": "^7.0.0-alpha.24",
"react-dom": "^18.2.0",
"react-hooks": "^1.0.1",
"react-redux": "^9.0.1",
"react-router-dom": "^6.15.0",
"react-scripts": "^5.0.1",
"react-scripts-less": "^5.0.4",
"react-select": "^5.8.0",
"react-tooltip": "^5.26.3",
"use-debounce": "^10.0.0",
"web-vitals": "^4.2.0",
"yup": "^1.2.0"
},
"scripts": {
"buildwp": "cross-env webpack --mode development --env development --config webpack.config.js",
"startwp": "cross-env webpack-dev-server --mode development --env development --config webpack.config.js --open",
"buildpwp": "cross-env webpack --mode production --env production --config webpack.config.js",
"startpwp": "cross-env webpack-dev-server --mode production --env production --config webpack.config.js --open",
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"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"
]
},
"devDependencies": {
"@babel/core": "^7.22.11",
"@babel/plugin-proposal-private-property-in-object": "^7.21.11",
"@babel/preset-env": "^7.22.14",
"@babel/preset-react": "^7.22.15",
"@redux-devtools/core": "^4.0.0",
"babel-loader": "^9.1.3",
"clean-webpack-plugin": "^4.0.0",
"concurrently": "^9.1.0",
"copy-webpack-plugin": "^12.0.1",
"css-loader": "^7.1.2",
"dotenv-webpack": "^8.0.1",
"eslint": "^9.5.0",
"eslint-plugin-babel": "^5.3.1",
"jest-editor-support": "^32.0.0-beta.1",
"less": "^4.2.0",
"less-loader": "^12.1.0",
"less-watch-compiler": "^1.16.3",
"mini-css-extract-plugin": "^2.7.6",
"prettier": "^3.0.3",
"sass": "^1.66.1",
"sass-loader": "^16.0.3",
"style-loader": "^4.0.0",
"terser-webpack-plugin": "^5.3.9",
"url-loader": "^4.1.1",
"webpack": "^5.88.2",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.0.0",
"webpack-merge": "^6.0.1"
}
}