2016-07-15 10:52:45 -07:00
|
|
|
{
|
2016-09-19 02:12:19 +03:00
|
|
|
"private": true,
|
2018-01-12 01:54:53 +00:00
|
|
|
"workspaces": [
|
|
|
|
|
"packages/*"
|
|
|
|
|
],
|
2016-07-15 20:07:31 +01:00
|
|
|
"scripts": {
|
2018-01-13 15:55:48 +00:00
|
|
|
"build": "cd packages/react-scripts && node bin/react-scripts.js build",
|
2016-12-03 17:53:03 +02:00
|
|
|
"changelog": "lerna-changelog",
|
2018-01-09 09:38:33 -08:00
|
|
|
"create-react-app": "node tasks/cra.js",
|
2017-01-23 20:43:16 +01:00
|
|
|
"e2e": "tasks/e2e-simple.sh",
|
2017-06-26 18:34:03 +02:00
|
|
|
"e2e:docker": "tasks/local-test.sh",
|
2018-01-12 01:54:53 +00:00
|
|
|
"postinstall": "cd packages/react-error-overlay/ && yarn build:prod",
|
|
|
|
|
"publish": "tasks/publish.sh",
|
2018-01-13 15:55:48 +00:00
|
|
|
"start": "cd packages/react-scripts && node bin/react-scripts.js start",
|
2018-01-16 20:07:45 +01:00
|
|
|
"screencast": "node ./tasks/screencast.js",
|
2018-01-17 14:00:14 +01:00
|
|
|
"screencast:error": "svg-term --cast jyu19xGl88FQ3poMY8Hbmfw8y --out screencast-error.svg --window --at 12000 --no-cursor",
|
2019-10-24 11:14:15 -07:00
|
|
|
"alex": "alex .",
|
2018-09-24 11:30:04 -04:00
|
|
|
"test": "cd packages/react-scripts && node bin/react-scripts.js test",
|
2020-09-14 05:26:35 +02:00
|
|
|
"format": "prettier --write 'packages/*/*.js' 'packages/*/!(node_modules)/**/*.js'",
|
2018-10-03 20:00:07 +01:00
|
|
|
"compile:lockfile": "node tasks/compile-lockfile.js"
|
2016-07-15 20:07:31 +01:00
|
|
|
},
|
2016-09-19 02:12:19 +03:00
|
|
|
"devDependencies": {
|
2020-10-23 00:32:00 +02:00
|
|
|
"@testing-library/jest-dom": "^5.11.4",
|
|
|
|
|
"@testing-library/react": "^11.1.0",
|
|
|
|
|
"@testing-library/user-event": "^12.1.10",
|
|
|
|
|
"alex": "^8.2.0",
|
2020-10-22 18:13:08 +02:00
|
|
|
"eslint": "^7.11.0",
|
2018-09-18 14:49:27 -04:00
|
|
|
"execa": "1.0.0",
|
2020-10-23 00:32:00 +02:00
|
|
|
"fs-extra": "^9.0.1",
|
2020-05-12 21:17:29 -07:00
|
|
|
"get-port": "^5.1.1",
|
2020-10-23 00:32:00 +02:00
|
|
|
"globby": "^11.0.1",
|
|
|
|
|
"husky": "^4.3.0",
|
|
|
|
|
"jest": "26.6.0",
|
2020-09-16 13:44:52 -07:00
|
|
|
"lerna": "3.22.1",
|
2019-03-11 19:45:14 -07:00
|
|
|
"lerna-changelog": "~0.8.2",
|
2020-10-23 00:32:00 +02:00
|
|
|
"lint-staged": "^10.4.2",
|
2020-05-12 21:17:29 -07:00
|
|
|
"meow": "^6.1.1",
|
|
|
|
|
"multimatch": "^4.0.0",
|
2020-10-23 00:32:00 +02:00
|
|
|
"prettier": "2.1.2",
|
|
|
|
|
"puppeteer": "^3.3.0",
|
2020-05-12 21:17:29 -07:00
|
|
|
"strip-ansi": "^6.0.0",
|
2018-05-20 19:22:24 +02:00
|
|
|
"svg-term-cli": "^2.1.1",
|
2018-10-10 11:05:15 -04:00
|
|
|
"tempy": "^0.2.1",
|
2020-10-23 00:32:00 +02:00
|
|
|
"wait-for-localhost": "^3.3.0",
|
|
|
|
|
"web-vitals": "^0.2.4"
|
2017-03-07 16:52:43 -08:00
|
|
|
},
|
2018-09-24 17:22:02 -04:00
|
|
|
"husky": {
|
|
|
|
|
"hooks": {
|
|
|
|
|
"pre-commit": "lint-staged"
|
|
|
|
|
}
|
|
|
|
|
},
|
2017-03-07 16:52:43 -08:00
|
|
|
"lint-staged": {
|
2020-09-14 05:26:35 +02:00
|
|
|
"*.{js,json,yml,yaml,css,scss,ts,tsx,md}": [
|
|
|
|
|
"prettier --write"
|
2017-03-07 16:52:43 -08:00
|
|
|
]
|
2016-07-21 16:44:57 +01:00
|
|
|
}
|
2017-03-04 12:59:09 -05:00
|
|
|
}
|