-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
77 lines (77 loc) · 2.25 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
{
"name": "react-transitioning",
"version": "1.0.3",
"description": "React components for easily implementing basic CSS animations and transitions",
"main": "dist/index.cjs.js",
"module": "dist/index.esm.js",
"exports": {
"types": "./dist/index.d.ts",
"require": "./dist/index.cjs.js",
"default": "./dist/index.esm.js"
},
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"prepare": "husky",
"prepublishOnly": "yarn run lint && yarn run build",
"lint": "eslint src && eslint stories",
"watch": "tsup --watch",
"build": "tsup --clean",
"dev": "storybook dev -p 6006",
"docs": "storybook build -o docs"
},
"keywords": [
"react",
"transition",
"animation",
"react-transition-group"
],
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"repository": {
"type": "git",
"url": "https://github.com/fakundo/react-transitioning"
},
"author": "Roman Samoylov (https://github.com/fakundo)",
"license": "MIT",
"devDependencies": {
"@commitlint/cli": "^19.6.1",
"@commitlint/config-conventional": "^19.6.0",
"@storybook/addon-essentials": "8.6.0-alpha.0",
"@storybook/blocks": "8.6.0-alpha.0",
"@storybook/manager-api": "8.6.0-alpha.0",
"@storybook/react": "8.6.0-alpha.0",
"@storybook/react-vite": "8.6.0-alpha.0",
"@storybook/test": "8.6.0-alpha.0",
"@types/react": "^19.0.7",
"@types/react-dom": "^19.0.3",
"@typescript-eslint/eslint-plugin": "^7.5.0",
"@typescript-eslint/parser": "^7.5.0",
"eslint": "^8.57.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^18.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-react": "^7.34.1",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-storybook": "^0.11.2",
"husky": "^9.1.7",
"prettier": "^3.2.5",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"storybook": "8.6.0-alpha.0",
"tsup": "^8.3.5",
"typescript": "5.5.4",
"vite": "^6.0.7",
"vite-tsconfig-paths": "^5.1.4"
},
"peerDependencies": {
"react": ">=16.8.0"
},
"packageManager": "yarn@3.8.7"
}