-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
83 lines (83 loc) · 2.15 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
78
79
80
81
82
83
{
"name": "react-twitch-provider",
"version": "0.1.1-beta.1",
"description": "A Twitch provider to easily access your Twitch account.",
"main": "./build/cjs/index.js",
"module": "./build/esm/index.js",
"types": "./build/esm/index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/vscav/react-twitch-provider.git"
},
"scripts": {
"build": "yarn build:esm && yarn build:cjs",
"build:esm": "tsc",
"build:cjs": "tsc --module commonjs --outDir build/cjs",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"prettier": "prettier --check .",
"prettier:fix": "prettier --write .",
"format": "yarn prettier:fix && yarn lint:fix",
"prepare": "husky install && yarn build"
},
"peerDependencies": {
"react": ">=16"
},
"files": [
"build",
"LICENSE",
"README.md"
],
"keywords": [
"react",
"typescript",
"package"
],
"author": "Vincent Scavinner",
"license": "MIT",
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"dependencies": {
"swr": "^1.3.0",
"zod": "^3.17.10"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@testing-library/react-hooks": "^8.0.1",
"@types/jest": "^28.1.1",
"@types/react": "^18.0.15",
"@typescript-eslint/eslint-plugin": "^5.27.1",
"@typescript-eslint/parser": "^5.27.1",
"eslint": "^8.17.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.30.0",
"eslint-plugin-react-hooks": "^4.5.0",
"husky": "^8.0.0",
"jest": "^28.1.1",
"jest-environment-jsdom": "^29.1.2",
"jest-mock-console": "^2.0.0",
"msw": "^0.47.3",
"prettier": "^2.6.2",
"react": "^18.1.0",
"react-dom": "^18.2.0",
"ts-jest": "^28.0.4",
"ts-node": "^10.9.1",
"typescript": "^4.7.3",
"whatwg-fetch": "^3.6.2"
}
}