-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
84 lines (84 loc) · 2.57 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
{
"workspaces": [
"packages/*"
],
"scripts": {
"lint": "eslint . --ext .ts,.tsx",
"postinstall": "husky install",
"prepublishOnly": "pinst --disable",
"postpublish": "pinst --enable"
},
"lint-staged": {
"*.{ts,tsx,json,mdx}": [
"prettier --write --ignore-unknown",
"git add"
],
"*.{ts,tsx}": [
"eslint --fix",
"git add"
]
},
"devDependencies": {
"@babel/core": "^7.14.8",
"@babel/preset-env": "^7.14.9",
"@babel/preset-react": "^7.14.5",
"@mdx-js/react": "^1.6.22",
"@rollup/plugin-commonjs": "^19.0.1",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^13.0.2",
"@stitches/react": "^1.2.5",
"@storybook/addon-actions": "^6.3.4",
"@storybook/addon-docs": "^6.3.4",
"@storybook/addon-essentials": "^6.3.4",
"@storybook/addon-links": "^6.3.4",
"@storybook/react": "^6.3.4",
"@testing-library/react": "^12.0.0",
"@toss-ui/eslint-config": "workspace:packages/eslint-config",
"@types/babel__core": "^7.1.15",
"@types/babel__preset-env": "^7",
"@types/jest": "^26.0.24",
"@types/mdx-js__react": "^1.5.4",
"@types/node": "^16.3.2",
"@types/react": "^17.0.14",
"@types/react-dom": "^17.0.9",
"@types/react-is": "^17",
"@types/react-test-renderer": "^17",
"@types/rollup-plugin-peer-deps-external": "^2.2.1",
"@types/styled-components": "^5",
"@typescript-eslint/eslint-plugin": "^4.29.0",
"@typescript-eslint/parser": "^4.29.0",
"babel-jest": "^27.0.6",
"babel-loader": "^8.2.2",
"csstype": "^3.0.8",
"eslint": "^7.32.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-airbnb-typescript": "^12.3.1",
"eslint-config-prettier": "^8.3.0",
"eslint-import-resolver-node": "^0.3.4",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-jest": "^24.3.6",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-promise": "^5.1.0",
"eslint-plugin-react": "^7.24.0",
"eslint-plugin-react-hooks": "^4.0.8",
"eslint-plugin-unicorn": "^34.0.1",
"husky": "^7.0.1",
"jest": "^27.0.6",
"lint-staged": "^11.0.1",
"pinst": "^2.1.6",
"prettier": "^2.3.2",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-is": "^17.0.2",
"react-test-renderer": "^17.0.2",
"rollup": "^2.53.2",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-typescript2": "^0.30.0",
"styled-components": "^5.3.0",
"ts-jest": "^27.0.3",
"ts-node": "^10.1.0",
"tslib": "^2.3.0",
"typescript": "^4.3.4"
}
}