forked from godaddy-wordpress/kodiak-ui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
107 lines (107 loc) · 2.68 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
{
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"lint": "eslint './packages/**/*.{js,jsx,ts,tsx}'",
"test": "jest --coverage",
"storybook": "yarn workspace @kodiak-ui/storybook storybook",
"build-storybook": "yarn workspace @kodiak-ui/storybook build-storybook",
"typecheck": "yarn run tsc --noEmit",
"docs": "yarn --cwd ./website start",
"clean": "lerna run clean",
"watch": "lerna run watch",
"build": "preconstruct build",
"build:watch": "preconstruct watch",
"release": "yarn release",
"publish": "yarn build && lerna publish",
"add:package": "preconstruct init",
"postinstall": "preconstruct dev"
},
"peerDependencies": {
"react": "^17.0.1",
"react-dom": "^17.0.1"
},
"devDependencies": {
"@babel/core": "^7.11.6",
"@babel/plugin-proposal-optional-chaining": "^7.11.0",
"@babel/preset-env": "^7.11.5",
"@babel/preset-react": "^7.10.4",
"@babel/preset-typescript": "^7.10.4",
"@preconstruct/cli": "^1.1.27",
"@testing-library/jest-dom": "^5.0.2",
"@testing-library/react": "^10.0.4",
"@testing-library/react-hooks": "^3.2.1",
"@types/jest": "^25.1.0",
"@types/react": "^17.0.0",
"@types/testing-library__jest-dom": "^5.9.2",
"@typescript-eslint/eslint-plugin": "^4.1.1",
"@typescript-eslint/parser": "^4.1.1",
"eslint": "^7.14.0",
"eslint-config-prettier": "^6.9.0",
"eslint-plugin-no-only-tests": "^2.4.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.20.6",
"eslint-plugin-react-hooks": "^4.1.2",
"husky": "^4.3.0",
"jest": "^26.1.0",
"jest-emotion": "^10.0.32",
"lerna": "^3.21.0",
"lint-staged": "^10.0.3",
"prettier": "^2.0.4",
"react-test-renderer": "^16.12.0",
"ts-jest": "^26.4.4",
"typescript": "^4.1.3"
},
"husky": {
"hooks": {
"precommit": "lint-staged"
}
},
"lint-staged": {
"*.{js,jsx,ts,tsx,md}": [
"prettier --write",
"yarn lint --fix",
"git add"
]
},
"jest": {
"testPathIgnorePatterns": [
"__fixtures__",
"/storybook",
"/node_modules",
"/dist"
],
"coveragePathIgnorePatterns": [
"/node_modules",
"/index.ts",
"/storybook",
"/dist"
],
"collectCoverageFrom": [
"**/packages/**/src/**/*.(ts|tsx)"
],
"coverageReporters": [
"lcov",
"text",
"html"
],
"transform": {
"\\.(ts|tsx)$": [
"ts-jest"
]
}
},
"preconstruct": {
"packages": [
"packages/*",
"!packages/example_template",
"!packages/storybook"
]
},
"dependencies": {
"react": "^17.0.1",
"react-dom": "^17.0.1"
}
}