theatre/package.json

59 lines
1.9 KiB
JSON
Raw Normal View History

2021-06-18 13:05:06 +02:00
{
"name": "theatre-monorepo",
"license": "Apache-2.0",
2022-04-15 13:28:14 +02:00
"version": "0.4.8-dev.3",
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": {
"playground": "yarn workspace playground run serve",
2022-02-28 13:15:27 +01:00
"test:e2e": "yarn workspace playground run test",
"test:e2e:ci": "yarn workspace playground run test:ci",
2021-10-02 13:48:02 +02:00
"typecheck": "yarn run build:ts",
2021-10-06 12:49:04 +02:00
"build": "zx scripts/build.mjs",
2021-10-02 13:48:02 +02:00
"build:ts": "tsc --build ./devEnv/typecheck-all-projects/tsconfig.all.json",
2021-06-18 13:05:06 +02:00
"test": "jest",
"postinstall": "husky install",
"release": "zx scripts/release.mjs",
2022-01-19 15:31:17 +01:00
"build:api-docs": "zx scripts/build-api-docs.mjs",
"lint:all": "eslint . --ext ts,tsx --ignore-path=.gitignore --rulesdir ./devEnv/eslint/rules"
2021-06-18 13:05:06 +02:00
},
"lint-staged": {
"theatre/**/*.(t|j)s?(x)": [
2021-06-18 13:05:06 +02:00
"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",
2021-10-04 10:39:12 +02:00
"@microsoft/api-documenter": "^7.13.54",
"@microsoft/api-extractor": "^7.18.11",
2021-09-01 10:41:54 +02:00
"@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-10-02 13:48:02 +02:00
"eslint-plugin-tsdoc": "^0.2.14",
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-10-04 10:39:12 +02:00
"jsonc-parser": "^3.0.0",
2021-09-01 10:41:54 +02:00
"lint-staged": "^11.1.2",
2021-10-04 10:39:12 +02:00
"node-gyp": "^8.1.0",
2021-09-01 10:41:54 +02:00
"prettier": "^2.3.2",
"typescript": "^4.4.2",
"zx": "^2.0.0"
2022-02-23 13:11:00 +01:00
},
"packageManager": "yarn@3.2.0"
2021-08-06 11:44:20 +02:00
}