-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.88 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
48
49
50
51
52
53
54
55
56
57
58
59
{
"name": "monorepo-template",
"packageManager": "[email protected]",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"lint": "eslint ./packages --ext .ts,.tsx,.js,.jsx --cache",
"common-components": "yarn workspace @common/components",
"common-styles": "yarn workspace @common/styles",
"common-utils": "yarn workspace @common/utils",
"prototype-a": "yarn workspace prototype-a",
"prototype-b": "yarn workspace prototype-b",
"postinstall": "husky install",
"test:all": "yarn workspaces foreach --parallel --include @common/components --include @common/utils run test"
},
"devDependencies": {
"@emotion/eslint-plugin": "^11.7.0",
"@types/node": "^17.0.8",
"@types/react": "^17.0.38",
"@typescript-eslint/eslint-plugin": "^5.9.1",
"@typescript-eslint/parser": "^5.9.1",
"eslint": "^8.6.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^8.3.0",
"eslint-import-resolver-node": "^0.3.6",
"eslint-import-resolver-typescript": "^2.5.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jest": "^25.3.4",
"eslint-plugin-jest-dom": "^4.0.1",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-react-hooks": "^4.3.0",
"eslint-plugin-storybook": "^0.5.5",
"husky": "^7.0.4",
"lint-staged": "^12.1.7",
"prettier": "^2.5.1",
"process": "^0.11.10",
"react": "^17.0.2",
"typescript": "^4.5.4"
},
"resolutions": {
"@storybook/react/webpack": "^5",
"@storybook/core-common/webpack": "^5",
"@storybook/core-server/webpack": "^5",
"@storybook/builder-webpack4/webpack": "^5",
"@storybook/manager-webpack4/webpack": "^5"
},
"dependencies": {
"@babel/runtime": "^7.17.8"
},
"dependenciesMeta": {
"[email protected]": {
"unplugged": true
}
}
}