-
Notifications
You must be signed in to change notification settings - Fork 82
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.92 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.92 KB
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
{
"private": true,
"workspaces": {
"packages": [
"packages/sdk",
"packages/*",
"tools/*",
"docs",
"examples/todo-block",
"examples/update-records-block",
"examples/shared-code-block/hello-world-typescript-block"
],
"nohoist": [
"{@airtable,@airtable-blocks-internal}/*/!(react|react-dom)",
"**/{@styled-system,@storybook,emotion,@emotion,csstype,@types}/*",
"**/@oclif/**"
]
},
"devDependencies": {
"husky": "^3.1.0",
"prettier": "^3.6.2",
"pretty-quick": "^4.2.2",
"react": "^19.1.1",
"react-dom": "^19.1.1",
"release-it": "17.3.0"
},
"resolutions": {
"@types/react": "^19.1.10",
"@types/react-dom": "^19.1.7",
"@typescript-eslint/eslint-plugin": "^7.13.0",
"@typescript-eslint/parser": "^7.13.0",
"**/mocha/mkdirp": "^0.5.6",
"**/react-dev-utils/loader-utils": "^1.4.1",
"**/react-dev-utils/shell-quote": "^1.8.1",
"cross-spawn": "^7.0.6",
"braces": "3.0.3",
"ejs": "^3.1.10",
"elliptic": "^6.6.1",
"express": "4.21.2",
"http-cache-semantics": "^4.1.1",
"parse-url": "^8.1.0",
"psl": "^1.10.0",
"trim": "1.0.1",
"typescript": "^5.4.5"
},
"scripts": {
"format": "prettier --write '**/*.{js,md,json,yml,ts,tsx}'",
"test": "yarn workspaces run test",
"ci": "yarn workspaces run ci",
"pick-pr-from-example": "./bin/pick-pr-from-example",
"release-example": "./bin/release-example"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"packageManager": "yarn@1.22.22+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e"
}