mirror of
https://github.com/roleypoly/roleypoly-v1.git
synced 2025-04-25 04:09:12 +00:00
80 lines
2.3 KiB
JSON
80 lines
2.3 KiB
JSON
{
|
|
"name": "roleypoly",
|
|
"version": "2.0.0",
|
|
"main": "index.js",
|
|
"scripts": {
|
|
"lerna": "lerna",
|
|
"start": "node packages/roleypoly-server/dist/index.js",
|
|
"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",
|
|
"remotedebug": "remotedebug_ios_webkit_adapter --port=9000 > /dev/null",
|
|
"test": "jest --color --coverage",
|
|
"lint": "lerna run lint-staged",
|
|
"rpcrepl": "babel-node packages/roleypoly-server/util/rpcrepl.js",
|
|
"dev:up": "docker-compose up -d",
|
|
"storybook": "start-storybook -p 6006",
|
|
"build-storybook": "build-storybook"
|
|
},
|
|
"private": true,
|
|
"workspaces": [
|
|
"packages/*"
|
|
],
|
|
"husky": {
|
|
"hooks": {
|
|
"pre-commit": "lerna run --concurrency 1 --stream precommit"
|
|
}
|
|
},
|
|
"devDependencies": {
|
|
"@babel/core": "^7.4.5",
|
|
"@babel/plugin-transform-runtime": "^7.4.4",
|
|
"@babel/preset-react": "^7.0.0",
|
|
"@types/enzyme": "^3.9.3",
|
|
"@types/sinon": "^7.0.12",
|
|
"@types/webpack-env": "^1.13.9",
|
|
"await-outside": "^2.1.2",
|
|
"babel-jest": "^24.8.0",
|
|
"babel-loader": "^8.0.6",
|
|
"babel-plugin-styled-components": "^1.10.0",
|
|
"chokidar": "^3.0.0",
|
|
"enzyme": "^3.9.0",
|
|
"enzyme-adapter-react-16": "^1.13.1",
|
|
"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",
|
|
"next": "^8.1.0",
|
|
"npm-run-all": "^4.1.5",
|
|
"react": "^16.8.6",
|
|
"react-dom": "^16.8.6",
|
|
"react-test-renderer": "^16.8.6",
|
|
"require-context.macro": "^1.0.4",
|
|
"standard": "12.0.1",
|
|
"styled-components": "^4.2.0",
|
|
"stylelint": "^10.0.1",
|
|
"stylelint-config-standard": "^18.3.0",
|
|
"stylelint-config-styled-components": "^0.1.1",
|
|
"stylelint-processor-styled-components": "^1.7.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": {}
|
|
}
|