-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 1.19 KB
/
package.json
File metadata and controls
31 lines (31 loc) · 1.19 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
{
"name": "react_redux_module_template",
"version": "0.5.0",
"description": "A Nexus Wallet Module template built with React and Redux, also includes boilerplate code and example usages of some Nexus Wallet Module's advanced features",
"devDependencies": {
"@babel/core": "^7.27.4",
"@babel/plugin-proposal-optional-chaining": "^7.21.0",
"@babel/plugin-transform-react-constant-elements": "^7.27.1",
"@babel/preset-env": "^7.27.2",
"@babel/preset-react": "^7.27.1",
"@babel/register": "^7.27.1",
"babel-loader": "^10.0.0",
"babel-plugin-dev-expression": "^0.2.3",
"babel-plugin-module-resolver": "^5.0.2",
"babel-plugin-transform-react-pure-class-to-function": "^1.0.1",
"babel-plugin-transform-react-remove-prop-types": "^0.4.24",
"cross-env": "^7.0.3",
"webpack": "^5.99.9",
"webpack-cli": "^6.0.1",
"webpack-dev-server": "^5.2.2"
},
"scripts": {
"build": "cross-env NODE_ENV=production webpack --config webpack.config.babel.js",
"dev": "cross-env NODE_ENV=development webpack serve --config webpack-dev.config.babel.js"
},
"dependencies": {
"nexus-module": "^1.1.11",
"react-redux": "^8.0.2",
"redux": "^4.2.0"
}
}