forked from grammarly/focal
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
33 lines (33 loc) · 1.17 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
{
"private": true,
"name": "focal",
"scripts": {
"build": "yarn workspace @grammarly/focal build",
"lint": "yarn lint:focal && yarn lint:test && yarn lint:todomvc && yarn lint:examples",
"lint:focal": "yarn workspace @grammarly/focal lint",
"lint:test": "yarn workspace focal-manual-tests lint",
"lint:todomvc": "yarn workspace focal-todomvc lint",
"lint:examples": "yarn workspace focal-examples lint",
"package": "yarn workspace @grammarly/focal pack",
"test": "yarn workspace @grammarly/focal test && yarn workspace focal-todomvc build && yarn workspace focal-examples build && yarn workspace focal-manual-tests build",
"postinstall": "yarn build",
"bump-version": "sh ./scripts/release.sh"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^4.14.0",
"@typescript-eslint/eslint-plugin-tslint": "^4.14.0",
"@typescript-eslint/parser": "^4.14.0",
"eslint": "^7.18.0",
"eslint-plugin-jsdoc": "^31.0.8",
"eslint-plugin-react": "^7.22.0",
"typescript": "3.6.4"
},
"workspaces": [
"packages/focal",
"packages/test",
"packages/examples/*"
],
"resolutions": {
"@types/react": "16.9.11"
}
}