-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
72 lines (72 loc) · 1.89 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
{
"name": "react-repo-card",
"version": "2.0.1",
"description": "A React component for the GitHub repository card",
"license": "MIT",
"repository": "dawsonbooth/react-repo-card",
"keywords": [
"frontend",
"react",
"typescript",
"repo",
"card",
"github"
],
"author": {
"name": "Dawson Booth",
"email": "[email protected]",
"url": "https://github.com/dawsonbooth"
},
"files": [
"dist/**/*"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"start": "start-storybook -p 6006",
"format": "prettier -w src",
"lint": "eslint src/**/* --fix",
"test": "jest",
"build": "tsc",
"docs": "build-storybook -c .storybook -o docs"
},
"dependencies": {
"string-replace-to-array": "^2.1.0"
},
"devDependencies": {
"@babel/core": "^7.17.9",
"@babel/preset-env": "^7.16.11",
"@babel/preset-react": "^7.16.7",
"@octokit/types": "^6.34.0",
"@storybook/addon-controls": "^6.4.22",
"@storybook/react": "^6.5.0-alpha.64",
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^13.1.1",
"@types/jest": "^27.4.1",
"@types/node-fetch": "^2.6.1",
"@types/react": "^18.0.5",
"@types/react-dom": "^18.0.1",
"@typescript-eslint/eslint-plugin": "^5.20.0",
"@typescript-eslint/parser": "^5.20.0",
"babel-jest": "^27.5.1",
"babel-loader": "^8.2.5",
"eslint": "^8.13.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.29.4",
"eslint-plugin-react-hooks": "^4.4.0",
"eslint-plugin-storybook": "^0.5.11",
"jest": "^27.5.1",
"node-fetch": "2",
"prettier": "^2.6.2",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"ts-jest": "^27.1.4",
"typescript": "^4.6.3"
},
"peerDependencies": {
"react": "*",
"react-dom": "*"
},
"packageManager": "[email protected]"
}