2019-05-31 17:58:01 +00:00
|
|
|
{
|
2020-03-04 18:24:51 +00:00
|
|
|
"name": "root",
|
|
|
|
"workspaces": [
|
|
|
|
"packages/*"
|
2019-10-28 17:56:57 +00:00
|
|
|
],
|
2020-03-04 18:24:51 +00:00
|
|
|
"private": true,
|
2019-08-09 18:45:38 +00:00
|
|
|
"devDependencies": {
|
2020-02-03 23:51:19 +00:00
|
|
|
"@babel/cli": "^7.8.4",
|
|
|
|
"@babel/core": "^7.8.4",
|
|
|
|
"@babel/plugin-proposal-class-properties": "^7.8.3",
|
2020-03-04 18:18:22 +00:00
|
|
|
"@babel/plugin-proposal-export-default-from": "^7.8.3",
|
2020-02-14 22:52:01 +00:00
|
|
|
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.8.3",
|
|
|
|
"@babel/plugin-proposal-optional-chaining": "^7.8.3",
|
2020-02-15 04:51:47 +00:00
|
|
|
"@babel/plugin-proposal-private-methods": "^7.8.3",
|
|
|
|
"@babel/plugin-transform-runtime": "^7.8.3",
|
2020-03-04 18:18:22 +00:00
|
|
|
"@babel/plugin-transform-react-jsx": "^7.8.3",
|
2020-02-03 23:51:19 +00:00
|
|
|
"@babel/preset-env": "^7.8.4",
|
2020-02-12 19:53:33 +00:00
|
|
|
"babel-eslint": "^10.0.3",
|
2020-02-15 21:01:30 +00:00
|
|
|
"babel-jest": "24.9.0",
|
2020-04-03 18:07:30 +00:00
|
|
|
"babel-loader": "^8.0.6",
|
2020-02-15 04:51:47 +00:00
|
|
|
"cross-env": "^7.0.0",
|
2020-02-12 19:53:33 +00:00
|
|
|
"eslint": "^6.8.0",
|
|
|
|
"eslint-plugin-babel": "^5.3.0",
|
|
|
|
"eslint-plugin-import": "^2.20.1",
|
|
|
|
"eslint-plugin-standard": "^4.0.1",
|
2020-04-03 18:07:30 +00:00
|
|
|
"find-up": "^4.1.0",
|
2020-02-15 21:01:30 +00:00
|
|
|
"jest": "24.9.0",
|
2019-08-22 15:25:26 +00:00
|
|
|
"npm-run-all": "^4.1.5",
|
2020-03-04 18:24:51 +00:00
|
|
|
"rimraf": "^3.0.1",
|
2020-04-03 18:07:30 +00:00
|
|
|
"lerna": "^3.20.2",
|
|
|
|
"webpack": "^4.41.6",
|
|
|
|
"webpack-cli": "^3.3.11",
|
|
|
|
"webpack-bundle-analyzer": "^3.4.1"
|
2019-08-09 18:45:38 +00:00
|
|
|
},
|
2019-05-31 19:47:02 +00:00
|
|
|
"dependencies": {
|
2020-03-04 18:24:51 +00:00
|
|
|
"@babel/runtime": "^7.8.4",
|
2020-02-03 23:51:19 +00:00
|
|
|
"@babel/runtime-corejs3": "^7.8.4",
|
2020-03-04 18:24:51 +00:00
|
|
|
"core-js": "^3.6.4"
|
2020-02-14 22:49:55 +00:00
|
|
|
},
|
2020-03-04 18:24:51 +00:00
|
|
|
"scripts": {
|
2020-04-03 18:07:30 +00:00
|
|
|
"build": "run-s build:packages",
|
|
|
|
"build:packages": "lerna run --ignore subspace-docs --stream build",
|
|
|
|
"build:site": "lerna run --scope subspace-docs --stream build",
|
|
|
|
"clean": "lerna run --parallel clean",
|
2020-03-04 18:24:51 +00:00
|
|
|
"lerna:bootstrap": "lerna bootstrap",
|
|
|
|
"bootstrap": "npm-run-all lerna:bootstrap build",
|
2020-04-03 18:07:30 +00:00
|
|
|
"lint": "cross-env eslint 'packages/**/*.js{,x}'",
|
|
|
|
"test": "lerna run --stream test"
|
|
|
|
},
|
|
|
|
"engines": {
|
|
|
|
"node": ">=10.17.0",
|
|
|
|
"npm": ">=6.11.3",
|
|
|
|
"yarn": ">=1.19.1"
|
2019-05-31 19:47:02 +00:00
|
|
|
}
|
2019-05-31 17:58:01 +00:00
|
|
|
}
|