forked from facebook/react
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
23 lines (23 loc) · 771 Bytes
/
package.json
File metadata and controls
23 lines (23 loc) · 771 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
"name": "react-devtools-fusebox",
"version": "0.0.0",
"private": "true",
"license": "MIT",
"files": ["dist"],
"scripts": {
"build:frontend:copy-types": "cp src/*.d.ts dist/",
"build:frontend:local": "cross-env NODE_ENV=development webpack --config webpack.config.frontend.js && yarn build:frontend:copy-types",
"build:frontend": "cross-env NODE_ENV=production webpack --config webpack.config.frontend.js && yarn build:frontend:copy-types",
"build": "yarn build:frontend"
},
"devDependencies": {
"buffer": "^6.0.3",
"cross-env": "^7.0.3",
"css-loader": "^6.9.1",
"mini-css-extract-plugin": "^2.7.7",
"process": "^0.11.10",
"webpack": "^5.104.1",
"webpack-cli": "^5.1.1",
"workerize-loader": "^2.0.2"
}
}