generated from sergiodxa/remix-auth-strategy-template
-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
68 lines (68 loc) · 1.82 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-twitter",
"version": "2.1.0",
"main": "./build/index.js",
"types": "./build/index.d.ts",
"author": "na2hiro <[email protected]>",
"description": "Twitter OAuth authentication plugin for Remix Auth",
"scripts": {
"build": "tsc --project tsconfig.json",
"typecheck": "tsc --project tsconfig.json --noEmit",
"lint": "eslint src/",
"lint:fix": "prettier --write src/",
"test": "jest --config=config/jest.config.ts --passWithNoTests",
"test:watch": "npm run test -- --watch",
"coverage": "npm run test -- --coverage"
},
"keywords": [
"remix",
"remix-auth",
"auth",
"authentication",
"strategy",
"twitter",
"oauth"
],
"license": "MIT",
"files": [
"build",
"package.json",
"README.md"
],
"repository": {
"type": "git",
"url": "git+https://github.com/na2hiro/remix-auth-twitter.git"
},
"homepage": "https://github.com/na2hiro/remix-auth-twitter#readme",
"peerDependencies": {
"@remix-run/server-runtime": "^1.19"
},
"devDependencies": {
"@remix-run/node": "^1.19.3",
"@remix-run/server-runtime": "^1.19.3",
"@types/crypto-js": "^4.1.0",
"@types/debug": "^4.1.7",
"@types/jest": "^29.5.2",
"@types/uuid": "^8.3.4",
"@typescript-eslint/eslint-plugin": "^5.60.1",
"@typescript-eslint/parser": "^5.60.1",
"eslint": "^7.26.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-jest": "^24.3.6",
"eslint-plugin-jest-dom": "^3.9.0",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-unicorn": "^32.0.1",
"jest": "^29.5.0",
"jest-fetch-mock": "^3.0.3",
"prettier": "^2.8.8",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typescript": "^5.0.4"
},
"dependencies": {
"crypto-js": "^4.1.1",
"debug": "^4.3.3",
"remix-auth": "^3.2.2",
"uuid": "^8.3.2"
}
}