-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
63 lines (63 loc) · 1.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
{
"name": "@charlesvien/react-animatecss",
"version": "1.0.10",
"description": "A React component implementing the latest version of Animate.css",
"author": "Charles Vien <[email protected]>",
"homepage": "https://github.com/charlesvien/react-animatecss",
"repository": {
"type": "git",
"url": "git+https://github.com/charlesvien/react-animatecss.git"
},
"license": "MIT",
"keywords": [
"react",
"animated",
"animatecss",
"animate-css",
"animation",
"animated.css"
],
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist/**/*"
],
"engines": {
"node": ">=8",
"npm": ">=5"
},
"scripts": {
"build": "rollup -c",
"watch": "rollup -c -w",
"dev": "start-storybook -p 6006",
"build:storybook": "build-storybook -o docs-build"
},
"dependencies": {
"prop-types": "^15.7.2"
},
"peerDependencies": {
"react": "^15.3.0 || ^16.0.0 || ^17.0.0",
"react-dom": "^15.3.0 || ^16.0.0 || ^17.0.0"
},
"devDependencies": {
"@babel/core": "^7.14.8",
"@storybook/addon-actions": "^6.3.6",
"@storybook/addon-essentials": "^6.3.6",
"@storybook/addon-links": "^6.3.6",
"@storybook/react": "^6.3.6",
"@types/node": "^16.4.6",
"@types/react": "^17.0.15",
"@types/react-dom": "^17.0.9",
"babel-loader": "^8.2.2",
"postcss": "^8.3.6",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"rollup": "^2.45.2",
"rollup-plugin-clear": "^2.0.7",
"rollup-plugin-postcss": "^4.0.0",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.30.0",
"tslib": "^2.3.0",
"typescript": "^4.3.5"
}
}