2021-06-18 13:05:06 +02:00
|
|
|
{
|
|
|
|
"name": "theatre-monorepo",
|
|
|
|
"license": "Apache-2.0",
|
2021-09-02 12:20:14 +02:00
|
|
|
"version": "0.4.0-dev.13",
|
2021-06-18 13:05:06 +02:00
|
|
|
"workspaces": [
|
|
|
|
"packages/*",
|
2021-08-06 12:00:19 +02:00
|
|
|
"examples/*",
|
2021-06-18 13:05:06 +02:00
|
|
|
"theatre"
|
|
|
|
],
|
|
|
|
"scripts": {
|
2021-08-07 21:41:07 +02:00
|
|
|
"playground": "yarn workspace playground run serve",
|
2021-06-18 13:05:06 +02:00
|
|
|
"typecheck": "tsc --build ./devEnv/typecheck-all-projects/tsconfig.all.json",
|
|
|
|
"test": "jest",
|
|
|
|
"postinstall": "husky install",
|
2021-08-04 21:51:25 +02:00
|
|
|
"deploy": "zx devEnv/deploy.mjs",
|
2021-09-04 15:44:31 +02:00
|
|
|
"lint:all": "eslint . --ext ts,tsx --ignore-path=.gitignore --rulesdir ./devEnv/eslint/rules",
|
|
|
|
"docs:dev": "vuepress dev docs",
|
|
|
|
"docs:build": "vuepress build docs"
|
2021-06-18 13:05:06 +02:00
|
|
|
},
|
|
|
|
"lint-staged": {
|
|
|
|
"**/*.(t|j)s?(x)": [
|
|
|
|
"eslint --rulesdir ./devEnv/eslint/rules --fix",
|
|
|
|
"prettier --write"
|
|
|
|
]
|
|
|
|
},
|
|
|
|
"devDependencies": {
|
2021-09-01 10:41:54 +02:00
|
|
|
"@babel/core": "^7.15.0",
|
|
|
|
"@babel/plugin-proposal-class-properties": "^7.14.5",
|
|
|
|
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.14.5",
|
|
|
|
"@babel/plugin-proposal-optional-chaining": "^7.14.5",
|
|
|
|
"@babel/preset-env": "^7.15.0",
|
|
|
|
"@babel/preset-react": "^7.14.5",
|
|
|
|
"@babel/preset-typescript": "^7.15.0",
|
|
|
|
"@typescript-eslint/eslint-plugin": "^4.30.0",
|
|
|
|
"@typescript-eslint/parser": "^4.30.0",
|
|
|
|
"esbuild": "^0.12.24",
|
2021-06-18 13:05:06 +02:00
|
|
|
"esbuild-jest": "^0.5.0",
|
2021-08-07 22:30:29 +02:00
|
|
|
"eslint": "^7.32.0",
|
2021-06-18 13:05:06 +02:00
|
|
|
"eslint-plugin-jsx-a11y": "^6.4.1",
|
2021-09-01 10:41:54 +02:00
|
|
|
"eslint-plugin-react": "^7.25.1",
|
2021-06-18 13:05:06 +02:00
|
|
|
"eslint-plugin-react-hooks": "^4.2.0",
|
2021-09-01 10:41:54 +02:00
|
|
|
"eslint-plugin-unused-imports": "^1.1.4",
|
2021-06-18 13:05:06 +02:00
|
|
|
"husky": "^6.0.0",
|
2021-09-01 10:41:54 +02:00
|
|
|
"jest": "^27.1.0",
|
2021-06-18 13:05:06 +02:00
|
|
|
"lerna": "^4.0.0",
|
2021-09-01 10:41:54 +02:00
|
|
|
"lint-staged": "^11.1.2",
|
|
|
|
"prettier": "^2.3.2",
|
|
|
|
"typescript": "^4.4.2",
|
2021-08-04 21:51:25 +02:00
|
|
|
"zx": "^2.0.0"
|
2021-06-18 13:05:06 +02:00
|
|
|
},
|
|
|
|
"dependencies": {
|
2021-09-04 15:44:31 +02:00
|
|
|
"node-gyp": "^8.1.0",
|
|
|
|
"typedoc": "^0.21.9",
|
|
|
|
"typedoc-plugin-markdown": "^3.10.4",
|
|
|
|
"vuepress": "^1.8.2",
|
|
|
|
"vuepress-plugin-typedoc": "^0.8.2"
|
2021-06-18 13:05:06 +02:00
|
|
|
}
|
2021-08-06 11:44:20 +02:00
|
|
|
}
|