-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
119 lines (119 loc) · 3.71 KB
/
package.json
File metadata and controls
119 lines (119 loc) · 3.71 KB
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
{
"name": "@iperka/iui",
"version": "0.0.17",
"description": "UI component library for iperka.",
"repository": {
"type": "git",
"url": "git+https://github.com/iperka/iui.git"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com/"
},
"author": {
"name": "Michael Beutler",
"email": "michael.beutler@iperka.com",
"url": "https://iperka.com"
},
"license": "MIT",
"scripts": {
"rollup": "rollup -c",
"test": "jest",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook",
"ci": "yarn install --immutable --immutable-cache --check-cache",
"lint": "eslint -c .eslintrc.json --ext .js,.jsx,.ts,.tsx src",
"generate-screenshots": "storycap --serverCmd \"start-storybook -p 9001\" http://localhost:9001",
"chromatic": "npx chromatic"
},
"devDependencies": {
"@babel/core": "^7.18.0",
"@babel/preset-env": "^7.18.0",
"@babel/preset-react": "^7.17.12",
"@babel/preset-typescript": "^7.17.12",
"@rollup/plugin-babel": "^5.3.1",
"@rollup/plugin-commonjs": "^22.0.0",
"@rollup/plugin-image": "^2.1.1",
"@rollup/plugin-node-resolve": "^13.3.0",
"@rollup/plugin-typescript": "^8.3.2",
"@storybook/addon-actions": "^6.5.16",
"@storybook/addon-essentials": "^6.5.16",
"@storybook/addon-interactions": "^6.5.16",
"@storybook/addon-links": "^6.5.16",
"@storybook/addon-postcss": "^2.0.0",
"@storybook/builder-webpack5": "^6.5.16",
"@storybook/manager-webpack5": "^6.5.16",
"@storybook/preset-scss": "^1.0.3",
"@storybook/react": "^6.5.16",
"@storybook/testing-library": "^0.0.13",
"@tailwindcss/aspect-ratio": "^0.4.0",
"@tailwindcss/forms": "^0.5.2",
"@tailwindcss/typography": "^0.5.2",
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^13.2.0",
"@types/jest": "^27.5.1",
"@types/react": "^18.0.9",
"@typescript-eslint/eslint-plugin": "^5.27.0",
"@typescript-eslint/parser": "^5.27.0",
"autoprefixer": "^10.4.7",
"babel-jest": "^28.1.0",
"babel-loader": "^8.2.5",
"chromatic": "^6.6.3",
"classnames": "^2.3.1",
"css-loader": "^6.7.1",
"eslint": "^8.16.0",
"eslint-config-prettier": "^8.5.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-jest": "^26.4.6",
"eslint-plugin-n": "^15.0.0",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-react": "^7.30.0",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-storybook": "^0.6.11",
"hygen": "^6.2.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^28.1.0",
"jest-environment-jsdom": "^28.1.0",
"postcss": "^8.4.14",
"postcss-import": "^14.1.0",
"prettier": "2.6.2",
"react": "^18.1.0",
"react-dom": "^18.1.0",
"rollup": "^2.74.1",
"rollup-plugin-dts": "^4.2.1",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-postcss": "^4.0.2",
"rollup-plugin-sourcemaps": "^0.6.3",
"rollup-plugin-terser": "^7.0.2",
"sass": "^1.52.1",
"sass-loader": "^13.0.0",
"storybook-tailwind-dark-mode": "^1.0.15",
"storycap": "^3.1.8",
"style-loader": "^3.3.1",
"tailwindcss": "3.1.1",
"tslib": "^2.4.0",
"typescript": "^4.6.4"
},
"peerDependencies": {
"react": "^18.1.0",
"react-dom": "^18.1.0"
},
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"files": [
"dist",
"README.md",
"LICENSE"
],
"types": "dist/index.d.ts",
"dependencies": {
"@headlessui/react": "^1.6.2",
"@heroicons/react": "^2.0.16",
"framer-motion": "^6.3.10",
"moment": "^2.29.3"
},
"bugs": {
"url": "https://github.com/iperka/iui/issues"
},
"homepage": "https://github.com/iperka/iui#readme"
}