mirror of
https://github.com/zebrajr/react.git
synced 2026-01-15 12:15:22 +00:00
32 lines
989 B
JSON
32 lines
989 B
JSON
{
|
|
"name": "react-devtools-core",
|
|
"version": "4.0.0-alpha.5",
|
|
"description": "Use react-devtools outside of the browser",
|
|
"license": "MIT",
|
|
"main": "./dist/backend.js",
|
|
"repository": {
|
|
"url": "https://github.com/bvaughn/react-devtools-experimental.git",
|
|
"type": "git"
|
|
},
|
|
"files": [
|
|
"dist",
|
|
"backend.js",
|
|
"standalone.js"
|
|
],
|
|
"scripts": {
|
|
"build": "yarn build:backend && yarn build:standalone",
|
|
"build:backend": "cross-env NODE_ENV=production webpack --config webpack.backend.js",
|
|
"build:standalone": "cross-env NODE_ENV=production webpack --config webpack.standalone.js",
|
|
"prepublish": "yarn run build",
|
|
"start:backend": "cross-env NODE_ENV=development webpack --config webpack.backend.js --watch",
|
|
"start:standalone": "cross-env NODE_ENV=development webpack --config webpack.standalone.js --watch"
|
|
},
|
|
"dependencies": {
|
|
"shell-quote": "^1.6.1",
|
|
"ws": "^7"
|
|
},
|
|
"devDependencies": {
|
|
"cross-env": "^3.1.4"
|
|
}
|
|
}
|