-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.32 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
{
"name": "react-webinar-3",
"version": "1.0.0",
"description": "Example project for webinar",
"main": "index.js",
"scripts": {
"start": "webpack serve",
"build": "cross-env NODE_ENV=production webpack",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ylabio/react-webinar-3.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/ylabio/react-webinar-3/issues"
},
"homepage": "https://github.com/ylabio/react-webinar-3#readme",
"dependencies": {
"@bem-react/classname": "^1.6.0",
"lodash.debounce": "^4.0.8",
"lodash.throttle": "^4.1.1",
"prop-types": "^15.8.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-redux": "^8.1.1",
"react-router-dom": "^6.14.1",
"redux": "^4.2.1",
"redux-thunk": "^2.4.2",
"shallowequal": "^1.1.0"
},
"devDependencies": {
"@babel/core": "^7.22.5",
"@babel/preset-env": "^7.22.5",
"@babel/preset-react": "^7.22.5",
"babel-loader": "^9.1.2",
"cross-env": "^7.0.3",
"css-loader": "^6.8.1",
"html-webpack-plugin": "^5.5.3",
"jest": "^29.5.0",
"less": "^4.1.3",
"less-loader": "^11.1.3",
"mini-css-extract-plugin": "^2.7.6",
"webpack": "^5.88.1",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^4.15.1"
}
}