forked from Airtable/blocks
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.15 KB
/
package.json
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
{
"private": true,
"workspaces": {
"packages": [
"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": "^1.19.1",
"pretty-quick": "^2.0.1",
"react": "^16.9.0",
"react-dom": "^16.9.0",
"release-it": "13.6.6"
},
"resolutions": {
"typescript": "~3.7.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"
}
}
}