forked from roginfarrer/collapsed
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
110 lines (110 loc) · 3.07 KB
/
package.json
File metadata and controls
110 lines (110 loc) · 3.07 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
{
"name": "react-collapsed",
"version": "0.0.0-development",
"author": "Rogin Farrer <rogin@roginfarrer.com>",
"description": "A tiny React custom-hook for creating flexible and accessible expand/collapse components.",
"license": "MIT",
"source": "src/index.ts",
"main": "dist/react-collapsed.js",
"module": "dist/react-collapsed.esm.js",
"umd:main": "dist/react-collapsed.umd.js",
"unpkg": "dist/react-collapsed.umd.js",
"types": "dist/index.d.ts",
"files": [
"src",
"dist"
],
"scripts": {
"watch": "microbundle watch",
"build": "microbundle",
"test": "jest src",
"lint": "tsc --project tsconfig.json --noEmit",
"format": "prettier --write **/*.{js,ts,tsx,yml,md,md,json}",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook",
"release": "np --no-2fa"
},
"peerDependencies": {
"react": ">=16.8",
"react-dom": ">=16.8"
},
"devDependencies": {
"@babel/core": "^7.8.4",
"@babel/eslint-parser": "^7.15.4",
"@babel/preset-react": "^7.14.5",
"@storybook/addon-a11y": "^6.5.11",
"@storybook/addon-actions": "^6.5.11",
"@storybook/addon-essentials": "^6.5.11",
"@storybook/addon-links": "^6.5.11",
"@storybook/react": "^6.5.11",
"@testing-library/jest-dom": "^5.3.0",
"@testing-library/react": "^13.4.0",
"@types/jest": "^25.1.2",
"@types/node": "^16.7.13",
"@types/raf": "^3.4.0",
"@types/react": "^18.0.18",
"@types/react-dom": "^18.0.6",
"@types/styled-components": "^5.0.1",
"@typescript-eslint/eslint-plugin": "^4.31.0",
"@typescript-eslint/parser": "^4.31.0",
"babel-loader": "^8.2.2",
"eslint": "^7.32.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-airbnb-typescript": "^14.0.0",
"eslint-config-prettier": "^8.3.0",
"eslint-config-rogin": "1.0.0",
"eslint-plugin-html": "^6.1.2",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.25.1",
"eslint-plugin-react-hooks": "^4.2.0",
"jest": "^27.1.0",
"microbundle": "^0.13.3",
"np": "^6.4.0",
"prettier": "^2.3.2",
"react": "^18.2.0",
"react-docgen-typescript-loader": "^3.7.1",
"react-dom": "^18.2.0",
"semantic-release": "^18.0.0",
"styled-components": "^5.2.0",
"ts-jest": "^27.0.5",
"typescript": "^4.4.2"
},
"dependencies": {
"raf": "^3.4.1",
"tiny-warning": "^1.0.3"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "jsdom",
"setupFilesAfterEnv": [
"<rootDir>/setupTests.ts"
],
"globals": {
"__DEV__": true
},
"testMatch": [
"<rootDir>/**/*.(spec|test).{ts,tsx,js,jsx}"
]
},
"repository": {
"type": "git",
"url": "https://github.com/roginfarrer/react-collapsed.git"
},
"bugs": {
"url": "https://github.com/roginfarrer/react-collapsed/issues"
},
"keywords": [
"collapse",
"react",
"collapsible",
"animate",
"height",
"render",
"expand",
"hooks",
"auto"
],
"prettier": "eslint-config-rogin/prettier"
}