-
Notifications
You must be signed in to change notification settings - Fork 34
/
package.json
47 lines (47 loc) · 1.83 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
42
43
44
45
46
47
{
"private": true,
"name": "focal",
"version": "0.0.0",
"workspaces": [
"packages/focal-atom",
"packages/focal",
"packages/test",
"packages/examples/*"
],
"nohoist": [
"tslint-eslint-rules"
],
"scripts": {
"build": "yarn clean && yarn workspace @grammarly/focal build",
"dev": "yarn workspace @grammarly/focal dev",
"clean": "yarn workspace @grammarly/focal-atom clean && yarn workspace @grammarly/focal clean",
"docs": "yarn workspace @grammarly/focal-atom docs && yarn workspace @grammarly/focal docs",
"lint": "yarn lint:focal-atom && yarn lint:focal && yarn lint:test && yarn lint:todomvc && yarn lint:examples",
"lint:focal": "yarn workspace @grammarly/focal lint",
"lint:focal-atom": "yarn workspace @grammarly/focal-atom lint",
"lint:test": "yarn workspace focal-manual-tests lint",
"lint:todomvc": "yarn workspace focal-todomvc lint",
"lint:examples": "yarn workspace focal-examples lint",
"test": "yarn workspace @grammarly/focal-atom test && yarn workspace @grammarly/focal test && yarn workspace focal-todomvc build && yarn workspace focal-examples build && yarn workspace focal-manual-tests build",
"package": "yarn workspace @grammarly/focal-atom pack && yarn workspace @grammarly/focal pack",
"bump-version": "sh ./scripts/bump-version.sh"
},
"devDependencies": {
"@changesets/cli": "^2.26.2",
"@typescript-eslint/eslint-plugin": "^5.36.2",
"@typescript-eslint/eslint-plugin-tslint": "^5.36.2",
"@typescript-eslint/parser": "^5.36.2",
"eslint": "^7.18.0",
"eslint-plugin-jsdoc": "^31.0.8",
"eslint-plugin-react": "^7.22.0",
"typescript": "^4.7.4"
},
"resolutions": {
"@types/react": "^18.0.14",
"@types/react-dom": "^18.0.0"
},
"dependencies": {
"@types/react": "^18.0.14",
"@types/react-dom": "^18.0.0"
}
}