forked from dondxniel/acid-ui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.61 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
{
"name": "acid-ui",
"version": "0.0.3",
"description": "A react component and animation library that abstracts out the logic behind compound components without imposing a styling pattern on the developer. It's animation components and hooks are wrappers and helpers for animate.css CSS library. ",
"main": "dist/index.js",
"repository": "https://github.com/dondxniel/acid-ui",
"author": "Don Daniel",
"license": "MIT",
"peerDependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@babel/core": "^7.19.1",
"@storybook/addon-actions": "^6.5.12",
"@storybook/addon-essentials": "^6.5.12",
"@storybook/addon-interactions": "^6.5.12",
"@storybook/addon-links": "^6.5.12",
"@storybook/builder-webpack4": "^6.5.12",
"@storybook/manager-webpack4": "^6.5.12",
"@storybook/react": "^6.5.12",
"@storybook/testing-library": "^0.0.13",
"@types/react": "^18.0.21",
"@types/react-dom": "^18.0.6",
"@typescript-eslint/eslint-plugin": "^5.38.1",
"@typescript-eslint/parser": "^5.38.1",
"babel-loader": "^8.2.5",
"eslint": "^8.24.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-import-resolver-typescript": "^3.5.1",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.6.1",
"eslint-plugin-react": "^7.31.8",
"eslint-plugin-react-hooks": "^4.6.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"sass": "^1.55.0",
"tsup": "^6.2.3",
"typescript": "^4.8.3"
},
"dependencies": {
"animate.css": "^4.1.1"
},
"scripts": {
"build": "rm -rf ./dist && tsup src/index.ts --dts",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook"
}
}