theatre/package.json

73 lines
2.3 KiB
JSON
Raw Normal View History

2021-06-18 13:05:06 +02:00
{
"name": "theatre-monorepo",
"license": "Apache-2.0",
2023-03-08 12:26:33 +01:00
"version": "0.6.1-dev.5",
2021-06-18 13:05:06 +02:00
"workspaces": [
"packages/*",
2021-08-06 12:00:19 +02:00
"examples/*",
"theatre",
"compatibility-tests"
2021-06-18 13:05:06 +02:00
],
"scripts": {
"playground": "yarn workspace playground run serve",
"benchmarks": "yarn workspace benchmarks 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",
"clean": "zx scripts/clean.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",
"test:compat:install": "yarn workspace @theatre/compatibility-tests run install-fixtures",
"test:compat:run": "jest --config jest.compat-tests.config.js",
2021-06-18 13:05:06 +02:00
"postinstall": "husky install",
"release": "zx scripts/release.mjs",
"lint:all": "eslint . --ext ts,tsx --ignore-path=.gitignore --rulesdir ./devEnv/eslint/rules"
2021-06-18 13:05:06 +02:00
},
"lint-staged": {
2022-04-23 22:56:18 +02:00
"(theatre|packages)/**/*.(t|j)s?(x)": [
"eslint --rulesdir ./devEnv/eslint/rules --fix"
],
"**/*.(t|j)s?(x)": [
2021-06-18 13:05:06 +02:00
"prettier --write"
]
},
"devDependencies": {
"@babel/core": "^7.18.9",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.18.6",
"@babel/plugin-proposal-optional-chaining": "^7.18.9",
"@babel/preset-env": "^7.18.9",
"@babel/preset-react": "^7.18.6",
"@babel/preset-typescript": "^7.18.6",
"@microsoft/api-documenter": "^7.19.0",
"@microsoft/api-extractor": "^7.28.6",
"@typescript-eslint/eslint-plugin": "^5.30.7",
"@typescript-eslint/parser": "^5.30.7",
"esbuild": "^0.16.7",
2021-06-18 13:05:06 +02:00
"esbuild-jest": "^0.5.0",
"eslint": "^8.20.0",
"eslint-plugin-jsx-a11y": "^6.6.1",
"eslint-plugin-react": "^7.30.1",
"eslint-plugin-tsdoc": "^0.2.16",
"eslint-plugin-unused-imports": "^2.0.0",
2021-06-18 13:05:06 +02:00
"husky": "^6.0.0",
"jest": "^29.3.1",
"jest-environment-jsdom": "^29.3.1",
"jsonc-parser": "^3.1.0",
"lint-staged": "^13.0.3",
"node-gyp": "^9.1.0",
2021-09-01 10:41:54 +02:00
"prettier": "^2.3.2",
"typescript": "4.6.x",
"zx": "^2.0.0"
2022-02-23 13:11:00 +01:00
},
"packageManager": "yarn@3.2.0",
"resolutions": {
"@types/react": "^17.0.9",
"@types/react-dom": "^17.0.9"
},
"dependencies": {
"@actions/core": "^1.10.0"
}
2021-08-06 11:44:20 +02:00
}