-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
151 lines (151 loc) · 4.32 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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
{
"version": "0.0.0-development",
"license": "MIT",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"files": [
"dist",
"src"
],
"engines": {
"node": ">=10"
},
"scripts": {
"start": "tsdx watch",
"build": "tsdx build",
"postbuild": "copyfiles tailwind.config.js dist && copyfiles -u 1 src/fonts/* dist",
"test": "tsdx test",
"lint": "yarn eslint --max-warnings 0 --ext .ts,.tsx src",
"prettier": "prettier 'src/**/*.{js,jsx,ts,tsx,json,css,scss,md}'",
"format": "yarn prettier --write",
"prettier:check": "yarn prettier --check",
"prepare": "husky install",
"size": "size-limit",
"analyze": "size-limit --why",
"storybook": "start-storybook -p 6006",
"build:storybook": "build-storybook",
"deploy:storybook": "storybook-to-ghpages --ci",
"commit": "cz",
"semantic-release": "semantic-release"
},
"peerDependencies": {
"@radix-ui/react-alert-dialog": "^0.1.5",
"@radix-ui/react-tooltip": "^0.1.6",
"clsx": "^1.1.1",
"date-fns": "^2.28.0",
"lodash": "^4.17.21",
"lodash-es": "^4.17.21",
"react": ">=16",
"react-icons": "^4.3.1",
"react-intl": "^5.24.6",
"react-table": "^7.7.0"
},
"husky": {
"hooks": {
"pre-commit": "tsdx lint"
}
},
"prettier": {
"printWidth": 80,
"semi": true,
"singleQuote": true,
"trailingComma": "es5"
},
"name": "@sonalake/design-system",
"module": "dist/design-system.esm.js",
"size-limit": [
{
"path": "dist/design-system.cjs.production.min.js",
"limit": "1000 KB"
},
{
"path": "dist/design-system.esm.js",
"limit": "200 KB"
}
],
"repository": {
"type": "git",
"url": "https://github.com/sonalake/design-system.git"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com"
},
"devDependencies": {
"@babel/core": "^7.17.0",
"@commitlint/cli": "^16.1.0",
"@commitlint/config-conventional": "^16.0.0",
"@radix-ui/react-alert-dialog": "^0.1.5",
"@radix-ui/react-tooltip": "^0.1.6",
"@size-limit/preset-small-lib": "^7.0.8",
"@storybook/addon-docs": "^6.5.0-alpha.41",
"@storybook/addon-essentials": "^6.4.18",
"@storybook/addon-info": "^5.3.21",
"@storybook/addon-links": "^6.4.18",
"@storybook/addon-postcss": "^2.0.0",
"@storybook/addons": "^6.4.18",
"@storybook/react": "^6.4.18",
"@storybook/storybook-deployer": "^2.8.10",
"@testing-library/jest-dom": "^5.16.2",
"@testing-library/react": "^12.1.2",
"@testing-library/user-event": "^13.5.0",
"@types/jest-axe": "^3.5.3",
"@types/lodash": "^4.14.178",
"@types/react": "^17.0.39",
"@types/react-dom": "^17.0.11",
"@types/react-table": "^7.7.9",
"@types/regenerator-runtime": "^0.13.1",
"@types/tailwindcss": "^3.0.7",
"@typescript-eslint/eslint-plugin": "^5.12.0",
"@typescript-eslint/parser": "^5.12.0",
"autoprefixer": "^10.4.2",
"babel-loader": "^8.2.3",
"copyfiles": "^2.4.1",
"cz-conventional-changelog": "^3.3.0",
"date-fns": "^2.28.0",
"eslint": "^8.9.0",
"eslint-config-react-app": "^7.0.0",
"eslint-plugin-flowtype": "^8.0.3",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jest": "^26.1.0",
"eslint-plugin-jest-dom": "^4.0.1",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"eslint-plugin-storybook": "^0.5.7",
"eslint-plugin-testing-library": "^5.0.5",
"husky": "^7.0.4",
"identity-obj-proxy": "^3.0.0",
"jest-axe": "^5.0.1",
"jest-junit": "^13.0.0",
"jest-transform-stub": "^2.0.0",
"lodash": "^4.17.21",
"lodash-es": "^4.17.21",
"postcss": "^8.4.6",
"postcss-loader": "^6.2.1",
"prettier": "^2.5.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-icons": "^4.3.1",
"react-intl": "^5.24.6",
"react-is": "^17.0.2",
"react-table": "^7.7.0",
"regenerator-runtime": "^0.13.9",
"rollup-plugin-postcss": "^4.0.2",
"semantic-release": "^19.0.2",
"size-limit": "^7.0.8",
"tailwindcss": "^3.0.22",
"tsdx": "^0.14.1",
"tslib": "^2.3.1",
"typescript": "^4.5.5"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}