-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
32 lines (32 loc) · 1.26 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
{
"name": "react_redux_module_template",
"version": "0.4.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.18.9",
"@babel/plugin-proposal-optional-chaining": "^7.18.9",
"@babel/plugin-transform-react-constant-elements": "^7.18.9",
"@babel/plugin-transform-react-inline-elements": "^7.18.6",
"@babel/preset-env": "^7.18.9",
"@babel/preset-react": "^7.18.6",
"@babel/register": "^7.18.9",
"babel-loader": "^8.2.5",
"babel-plugin-dev-expression": "^0.2.3",
"babel-plugin-module-resolver": "^4.1.0",
"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.73.0",
"webpack-cli": "^4.10.0",
"webpack-dev-server": "^4.9.3"
},
"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.0.0-alpha.9",
"react-redux": "^8.0.2",
"redux": "^4.2.0"
}
}