-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
101 lines (101 loc) · 2.63 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
{
"name": "h1st-ui-components",
"version": "0.2.0",
"private": true,
"main": "dist/index.cjs.js",
"module": "dist/index.esm.js",
"typings": "dist/index",
"files": [
"dist"
],
"source": "src/index.ts",
"peerDependencies": {
"lodash.merge": "^4.6.2",
"react": "^17.0.2"
},
"dependencies": {
"@craco/craco": "^6.1.2",
"@headlessui/react": "^1.3.0",
"@heroicons/react": "^1.0.1",
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-commonjs": "^20.0.0",
"@rollup/plugin-node-resolve": "^13.0.4",
"@tailwindcss/forms": "^0.3.3",
"@testing-library/jest-dom": "^5.11.4",
"@testing-library/react": "^11.1.0",
"@testing-library/user-event": "^12.1.10",
"@types/jest": "^26.0.15",
"@types/node": "^12.0.0",
"@types/react": "^17.0.0",
"@types/react-dom": "^17.0.0",
"autoprefixer": "^9",
"faker": "^5.5.3",
"lodash.clonedeep": "^4.5.0",
"lodash.merge": "^4.6.2",
"node-sass": "^6.0.1",
"postcss": "^7",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-paginate": "^7.1.3",
"react-scripts": "4.0.3",
"rollup": "^2.52.7",
"rollup-plugin-delete": "^2.0.0",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-postcss": "^4.0.0",
"rollup-plugin-typescript": "^1.0.1",
"rollup-plugin-typescript2": "^0.30.0",
"sass": "^1.35.1",
"tailwindcss": "npm:@tailwindcss/postcss7-compat",
"typescript": "^4.1.2",
"web-vitals": "^1.0.1",
"@types/faker": "^5.5.7",
"@types/lodash.clonedeep": "^4.5.6",
"@types/lodash.merge": "^4.6.6",
"@types/react-paginate": "^7.1.1"
},
"scripts": {
"start": "craco start",
"build": "rollup -c",
"test": "craco test",
"eject": "craco eject",
"storybook": "start-storybook -p 6006 -s public",
"build-storybook": "build-storybook -s public",
"postinstall": "yarn build"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
],
"overrides": [
{
"files": [
"**/*.stories.*"
],
"rules": {
"import/no-anonymous-default-export": "off"
}
}
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@storybook/addon-actions": "^6.3.5",
"@storybook/addon-essentials": "^6.3.5",
"@storybook/addon-links": "^6.3.5",
"@storybook/node-logger": "^6.3.5",
"@storybook/preset-create-react-app": "^3.2.0",
"@storybook/react": "^6.3.5"
}
}