mirror of
https://github.com/roleypoly/roleypoly-v1.git
synced 2025-04-25 12:19:10 +00:00
63 lines
1.6 KiB
JSON
63 lines
1.6 KiB
JSON
{
|
|
"name": "roleypoly",
|
|
"version": "2.0.0",
|
|
"main": "index.js",
|
|
"scripts": {
|
|
"lerna": "lerna",
|
|
"dev": "run-p dev:*",
|
|
"dev:backend": "babel-node packages/roleypoly-server/index.js",
|
|
"dev:bot": "babel-node packages/roleypoly-bot/index.js",
|
|
"build": "lerna run build",
|
|
"generate": "lerna run generate",
|
|
"remotedebug": "remotedebug_ios_webkit_adapter --port=9000 > /dev/null",
|
|
"test": "jest --color --coverage",
|
|
"lint": "lerna run lint-staged",
|
|
"dev:up": "docker-compose up -d"
|
|
},
|
|
"private": true,
|
|
"workspaces": [
|
|
"packages/*"
|
|
],
|
|
"husky": {
|
|
"hooks": {
|
|
"pre-commit": "lerna run --concurrency 1 --stream precommit"
|
|
}
|
|
},
|
|
"devDependencies": {
|
|
"@types/enzyme": "^3.9.3",
|
|
"babel-jest": "^24.8.0",
|
|
"babel-loader": "^8.0.6",
|
|
"enzyme": "^3.10.0",
|
|
"enzyme-adapter-react-16": "^1.14.0",
|
|
"enzyme-to-json": "^3.3.5",
|
|
"husky": "^2.3.0",
|
|
"jest": "^24.8.0",
|
|
"jest-styled-components": "^6.3.1",
|
|
"lerna": "^3.14.1",
|
|
"lint-staged": "^8.1.7",
|
|
"npm-run-all": "^4.1.5",
|
|
"standard": "12.0.1",
|
|
"stylelint": "^10.0.1",
|
|
"stylelint-config-standard": "^18.3.0",
|
|
"stylelint-config-styled-components": "^0.1.1",
|
|
"stylelint-processor-styled-components": "^1.8.0",
|
|
"ts-jest": "^24.0.2",
|
|
"tslint": "^5.17.0",
|
|
"typescript": "^3.5.1",
|
|
"typescript-tslint-plugin": "^0.4.0"
|
|
},
|
|
"lint-staged": {
|
|
"*.{ts,tsx}": [
|
|
"stylelint --fix",
|
|
"tslint --fix",
|
|
"jest",
|
|
"git add"
|
|
],
|
|
"*.{js,jsx}": [
|
|
"standard --fix",
|
|
"jest --bail --findRelatedTests",
|
|
"git add"
|
|
]
|
|
},
|
|
"dependencies": {}
|
|
}
|