-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
25 lines (25 loc) · 955 Bytes
/
package.json
File metadata and controls
25 lines (25 loc) · 955 Bytes
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
{
"name": "react_module_template",
"version": "0.4.0",
"description": "A simple Nexus Wallet Module template built with React",
"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-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"
}
}