-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.76 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
{
"name": "react-ethereal-boilerplate",
"version": "0.0.3",
"description": "React + Redux + redux-saga lightweight starter kit",
"scripts": {
"start": "cross-env NODE_ENV=development webpack-dev-server --mode development --config ./config/webpack/dev.config.js --open --hot",
"build": "cross-env NODE_ENV=production webpack --mode production --config ./config/webpack/prod.config.js",
"lint:js": "eslint src/",
"prepare": "husky"
},
"main": "index.js",
"repository": "[email protected]:mainset/react-ethereal-boilerplate.git",
"author": "Yevhen Uzhva <[email protected]>",
"license": "MIT",
"private": false,
"devDependencies": {
"@babel/cli": "^7.25.9",
"@babel/core": "^7.26.0",
"@babel/eslint-parser": "^7.25.9",
"@babel/preset-env": "^7.26.0",
"@babel/preset-react": "^7.25.9",
"@eslint/js": "^9.13.0",
"babel-loader": "^9.2.1",
"cross-env": "^7.0.3",
"eslint": "^9.13.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-react": "^7.37.2",
"globals": "^15.11.0",
"html-webpack-plugin": "^5.6.3",
"husky": "^9.1.6",
"redux-devtools-extension": "^2.13.5",
"terser-webpack-plugin": "^5.3.10",
"typescript-eslint": "^8.11.0",
"webpack": "^5.95.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.1.0",
"webpack-merge": "^6.0.1"
},
"dependencies": {
"@babel/polyfill": "^7.12.1",
"connected-react-router": "^6.3.2",
"history": "^4.9.0",
"immutable": "^4.0.0-rc.12",
"prop-types": "^15.6.2",
"react": "^16.5.2",
"react-dom": "^16.5.2",
"react-redux": "^7.0.1",
"react-router-dom": "^5.0.0",
"redux": "^4.0.1",
"redux-saga": "^1.0.2",
"redux-shared-store": "mainset/redux-shared-store#master",
"reselect": "^4.0.0"
}
}