oyster/package.json

77 lines
1.9 KiB
JSON
Raw Normal View History

2021-02-05 19:21:35 -08:00
{
"private": true,
2021-02-08 19:17:27 -08:00
"workspaces": {
"packages": [
"packages/*"
]
},
2021-02-15 09:02:39 -08:00
"keywords": [],
2021-02-08 19:17:27 -08:00
"license": "Apache-2.0",
"engines": {
"node": ">=6.0.0"
},
"scripts": {
2021-02-15 09:02:39 -08:00
"bootstrap": "lerna link && lerna bootstrap",
2021-02-08 19:17:27 -08:00
"build": "lerna run build",
2021-02-11 09:37:58 -08:00
"start": "CI=true lerna run start --scope @oyster/common --stream --parallel --scope ",
2021-02-08 19:17:27 -08:00
"lint": "eslint 'packages/*/{src,test}/**/*.ts' && prettier -c 'packages/*/{src,test}/**/*.ts'",
"lint:fix": "eslint --fix 'packages/*/{src,test}/**/*.ts' && prettier --write 'packages/*/{src,test}/**/*.ts'",
"deploy": "run-s deploy:docs build deploy:apps && gh-pages -d docs",
"deploy:docs": "lerna run docs",
"deploy:apps": "lerna run deploy:app",
"test": "lerna run test --concurrency 1 --stream"
2021-02-05 19:21:35 -08:00
},
2021-02-08 19:17:27 -08:00
"lint-staged": {
"packages/*/{src,test}/**/*.ts": [
"prettier --write"
2021-02-05 19:21:35 -08:00
]
},
2021-02-08 19:17:27 -08:00
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"prettier": {
"arrowParens": "avoid",
"semi": true,
"singleQuote": true,
"trailingComma": "all"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
2021-02-05 19:21:35 -08:00
},
2021-02-09 16:26:06 -08:00
"dependencies": {
"react": "16.13.1",
"react-dom": "16.13.1"
},
2021-02-08 19:17:27 -08:00
"devDependencies": {
"@commitlint/cli": "^8.2.0",
"@commitlint/config-conventional": "^8.2.0",
"@types/jest": "^24.0.0",
2021-02-15 09:02:39 -08:00
"@types/react": "^16.9.50",
"@types/react-dom": "^16.9.8",
2021-02-08 19:17:27 -08:00
"@typescript-eslint/eslint-plugin": "^4.6.0",
"@typescript-eslint/parser": "^4.6.0",
"eslint": "^6.6.0",
"eslint-config-prettier": "^6.15.0",
"gh-pages": "^3.1.0",
"husky": "^4.3.0",
"jest": "24.9.0",
"jest-config": "24.9.0",
"lerna": "3.22.1",
"lint-staged": "^10.5.0",
2021-02-15 09:02:39 -08:00
"npm-run-all": "^4.1.5",
2021-02-08 19:17:27 -08:00
"prettier": "^2.1.2",
2021-02-15 09:02:39 -08:00
"rimraf": "^3.0.2",
2021-02-08 19:17:27 -08:00
"ts-jest": "^24.0.0",
"ts-node": "^9.0.0",
2021-02-15 09:02:39 -08:00
"typescript": "^4.1.3"
2021-02-09 16:26:06 -08:00
},
"resolutions": {
"react": "16.13.1",
"react-dom": "16.13.1"
2021-02-05 19:21:35 -08:00
}
}