-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 1.72 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
{
"name": "remix-auth-bungie",
"version": "1.0.5",
"main": "./build/index.js",
"types": "./build/index.d.ts",
"author": {
"name": "Roy Anger",
"email": "[email protected]"
},
"repository": {
"url": "https://github.com/royanger/remix-auth-bungie",
"type": "git"
},
"scripts": {
"build": "tsc --project tsconfig.json",
"typecheck": "tsc --project tsconfig.json --noEmit",
"lint": "eslint --ext .ts,.tsx src/",
"test": "jest --config=config/jest.config.ts --passWithNoTests",
"coverage": "npm run test -- --coverage"
},
"keywords": [
"remix",
"remix-auth",
"auth",
"authentication",
"strategy",
"bungie",
"destiny",
"remix-bungie"
],
"license": "MIT",
"files": [
"build",
"package.json",
"README.md"
],
"peerDependencies": {
"@remix-run/server-runtime": "^1.6.0"
},
"devDependencies": {
"@babel/core": "^7.18.5",
"@babel/preset-env": "^7.18.2",
"@babel/preset-react": "^7.17.12",
"@babel/preset-typescript": "^7.17.12",
"@remix-run/node": "^1.6.0",
"@remix-run/react": "^1.6.0",
"@remix-run/server-runtime": "^1.6.0",
"@types/jest": "^28.1.1",
"@typescript-eslint/eslint-plugin": "^5.28.0",
"@typescript-eslint/parser": "^5.28.0",
"babel-jest": "^28.1.1",
"eslint": "^8.17.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-jest": "^26.5.3",
"eslint-plugin-jest-dom": "^4.0.2",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-unicorn": "^42.0.0",
"jest": "^28.1.1",
"jest-fetch-mock": "^3.0.3",
"prettier": "^2.7.1",
"react": "^18.2.0",
"typescript": "^4.7.3"
},
"dependencies": {
"remix-auth": "^3.2.2",
"remix-auth-oauth2": "^1.2.2"
}
}