-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.37 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.37 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
{
"name": "remix-auth-guilded",
"version": "1.0.1",
"main": "./build/index.js",
"types": "./build/index.d.ts",
"repository": {
"url": "https://github.com/GuildedAPI/remix-auth-guilded"
},
"author": {
"name": "shay (shayypy)",
"url": "https://shay.cat"
},
"scripts": {
"build": "tsc --project tsconfig.json",
"typecheck": "tsc --project tsconfig.json --noEmit",
"lint": "biome lint .",
"fix": "biome check --apply .",
"test": "jest --config=config/jest.config.ts --passWithNoTests",
"coverage": "npm run test -- --coverage"
},
"keywords": ["remix", "remix-auth", "auth", "authentication", "strategy"],
"license": "MIT",
"files": ["build", "package.json", "README.md"],
"peerDependencies": {
"@remix-run/server-runtime": "^1.0.0"
},
"devDependencies": {
"@babel/core": "^7.14.2",
"@babel/preset-env": "^7.14.1",
"@babel/preset-react": "^7.13.13",
"@babel/preset-typescript": "^7.13.0",
"@biomejs/biome": "^1.7.1",
"@remix-run/node": "^1.0.3",
"@remix-run/react": "^1.1.1",
"@remix-run/server-runtime": "^1.0.0",
"@types/jest": "^26.0.23",
"babel-jest": "^26.6.3",
"jest": "^26.6.3",
"jest-fetch-mock": "^3.0.3",
"react": "^17.0.2",
"ts-node": "^9.1.1",
"typescript": "^4.3.5"
},
"dependencies": {
"remix-auth": "^3.0.0",
"remix-auth-oauth2": "^1.11.2"
}
}