generated from sergiodxa/remix-auth-strategy-template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
62 lines (62 loc) · 1.52 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
{
"name": "remix-auth-clerk",
"version": "1.0.1",
"keywords": [
"remix",
"remix-auth",
"auth",
"authentication",
"strategy",
"clerk"
],
"license": "MIT",
"exports": {
".": {
"require": "./dist/index.js",
"import": "./dist/index.mjs"
}
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist",
"package.json",
"README.md"
],
"scripts": {
"build": "tsup",
"coverage": "npm run test -- --coverage",
"lint": "eslint --ext .ts,.tsx src/",
"test": "jest --config=config/jest.config.ts --passWithNoTests",
"typecheck": "tsc --project tsconfig.json --noEmit"
},
"dependencies": {
"remix-auth-oauth2": "1.11.1"
},
"devDependencies": {
"@babel/core": "7.23.7",
"@babel/preset-env": "7.23.8",
"@babel/preset-react": "7.23.3",
"@babel/preset-typescript": "7.23.3",
"@remix-run/node": "2.5.1",
"@remix-run/react": "2.5.1",
"@remix-run/server-runtime": "2.5.1",
"@types/jest": "29.5.11",
"@typescript-eslint/eslint-plugin": "6.19.0",
"@typescript-eslint/parser": "6.19.0",
"babel-jest": "29.7.0",
"eslint": "8.56.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-jest": "27.6.3",
"eslint-plugin-jest-dom": "5.1.0",
"eslint-plugin-prettier": "5.1.3",
"eslint-plugin-unicorn": "50.0.1",
"jest": "29.7.0",
"jest-fetch-mock": "3.0.3",
"prettier": "3.2.4",
"react": "18.2.0",
"ts-node": "10.9.2",
"tsup": "8.0.1",
"typescript": "5.3.3"
}
}