forked from reactive-python/reactpy
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 842 Bytes
/
Copy pathpackage.json
File metadata and controls
26 lines (26 loc) · 842 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
{
"license": "MIT",
"scripts": {
"publish": "npm --workspaces publish",
"test": "npm --workspaces test",
"build": "npm --workspaces run build",
"fix:format": "npm run prettier -- --write && npm run eslint -- --fix",
"check:format": "npm run prettier -- --check && npm run eslint",
"check:tests": "npm --workspaces run check:tests",
"check:types": "npm --workspaces run check:types",
"prettier": "prettier --ignore-path .gitignore .",
"eslint": "eslint --ignore-path .gitignore ."
},
"workspaces": [
"packages/event-to-object",
"packages/@reactpy/client",
"app"
],
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.58.0",
"@typescript-eslint/parser": "^5.58.0",
"eslint": "^8.38.0",
"eslint-plugin-react": "^7.32.2",
"prettier": "^3.0.0-alpha.6"
}
}