-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
61 lines (61 loc) · 1.53 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
{
"name": "@crossmint/sol-auth",
"version": "0.1.0",
"author": "Paella Labs Inc",
"license": "Apache-2.0",
"repository": "https://github.com/Paella-Labs/solana-firebase-auth",
"type": "module",
"sideEffects": false,
"main": "lib/cjs/index.js",
"module": "lib/esm/index.js",
"types": "lib/esm/index.d.ts",
"exports": {
"import": "./lib/esm/index.js",
"require": "./lib/cjs/index.js"
},
"private": "true",
"workspaces": [
"packages/*/*"
],
"files": [
"LICENSE",
"lib",
"src"
],
"publishConfig": {
"access": "restricted"
},
"scripts": {
"clean": "npx lerna run clean",
"build": "yarn clean && lerna run build --ignore=@crossmint/solana-auth-nextjs-starter"
},
"dependencies": {
"@solana/wallet-adapter-base": "^0.8.1",
"@solana/wallet-adapter-react": "^0.14.0",
"@solana/wallet-adapter-react-ui": "^0.7.0",
"@solana/wallet-adapter-wallets": "^0.13.0",
"@solana/web3.js": "^1.20.0",
"bs58": "^4.0.1",
"firebase": "^9.6.1",
"next": "^11.1.2",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-firebase-hooks": "^4.0.1",
"tweetnacl": "^1.0.3",
"tweetnacl-util": "^0.15.1"
},
"devDependencies": {
"@types/react": "^17.0.24",
"@types/react-dom": "^17.0.11",
"eslint": "^7.32.0",
"eslint-config-next": "^11.1.2",
"firebase-admin": "^10.0.1",
"lerna": "^4.0.0",
"next-transpile-modules": "^8.0.0",
"shx": "^0.3.3",
"typescript": "^4.4.4"
},
"resolutions": {
"@types/react": "^17.0.24"
}
}