SIGN IN SIGN UP

Set up a modern web app by running one command.

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