This repository has been archived by the owner on May 31, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.8 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
{
"name": "react-tridi-wrapper",
"version": "0.0.1",
"description": "360-degree image viewer as a React component",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"test": "jest",
"clearTestCache": "jest --clearCache",
"clean": "rimraf dist/*",
"dev": "tsc -w",
"compile": "tsc --project tsconfig.json",
"build": "npm run lint && npm run test && npm run clean && npm run compile",
"lint": "eslint . --ext .ts",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lukemnet/react-tridi-wrapper.git"
},
"keywords": [
"react",
"hook",
"useTwitchAuth",
"twitch",
"extension",
"authorization",
"onauthorized"
],
"author": "Łukasz Wójcik",
"license": "MIT",
"bugs": {
"url": "https://github.com/lukemnet/react-tridi-wrapper/issues"
},
"homepage": "https://github.com/lukemnet/react-tridi-wrapper#readme",
"dependencies": {
"react": "^18.1.0",
"tridi": "^2.0.2"
},
"devDependencies": {
"@testing-library/react": "^13.1.1",
"@types/jest": "^27.4.0",
"@types/node": "^17.0.8",
"@types/react": "^18.0.8",
"@types/react-dom": "^18.0.2",
"@types/react-test-renderer": "^18.0.0",
"@typescript-eslint/eslint-plugin": "^5.10.1",
"@typescript-eslint/parser": "^5.10.1",
"babel-jest": "^28.0.2",
"eslint": "^8.6.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^26.0.0",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.22.0",
"eslint-plugin-react-hooks": "^4.2.0",
"jest": "^28.0.2",
"jest-environment-jsdom": "^28.1.0",
"react-dom": "^18.1.0",
"rimraf": "^3.0.2",
"ts-jest": "^28.0.2",
"typescript": "^4.1.3"
}
}