-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
93 lines (93 loc) · 2.63 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "particle-solana-google-example",
"version": "1.0.0",
"author": "TABASCOatw",
"repository": {
"type": "git",
"url": "git+https://github.com/tabascoatw/particle-solana-google-example.git"
},
"license": "Apache-2.0",
"publishConfig": {
"access": "public"
},
"files": [
"public",
"src",
".gitignore",
"config-overrides.js",
"LICENSE",
"package.json",
"README.md",
"tsconfig.json"
],
"scripts": {
"build": "tsc --build --verbose && react-app-rewired build",
"clean": "shx mkdir -p build lib && shx rm -rf build lib",
"lint": "prettier --check 'src/{*,**/*}.{ts,tsx,js,jsx,json}' && eslint",
"start": "react-app-rewired start",
"test": "CI=true react-app-rewired test --passWithNoTests",
"test:watch": "react-app-rewired test --passWithNoTests",
"eject": "react-scripts eject"
},
"dependencies": {
"@particle-network/auth": "^1.2.1",
"@particle-network/solana-wallet": "^1.2.0",
"@solana/wallet-adapter-base": "workspace:^",
"@solana/wallet-adapter-react": "workspace:^",
"@solana/wallet-adapter-react-ui": "workspace:^",
"@solana/wallet-adapter-wallets": "^0.19.22",
"@solana/web3.js": "^1.77.3",
"antd": "^5.9.4",
"bs58": "^5.0.0",
"buffer": "^6.0.3",
"react": "^18.2.0",
"react-app-rewired": "^2.2.1",
"react-dom": "^18.2.0",
"react-scripts": "5.0.1",
"web-vitals": "^2.1.4"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@testing-library/user-event": "^14.4.3",
"@types/jest": "^28.1.8",
"@types/react": "^18.2.13",
"@types/react-dom": "^18.2.6",
"@types/testing-library__jest-dom": "^5.14.6",
"browserify-zlib": "^0.2.0",
"crypto-browserify": "^3.12.0",
"https-browserify": "^1.0.0",
"process": "^0.11.10",
"shx": "^0.3.4",
"source-map-loader": "^4.0.1",
"stream-browserify": "^3.0.0",
"stream-http": "^3.2.0",
"typescript": "~4.7.4",
"url": "^0.11.1",
"webpack": "^5.88.0"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"bugs": {
"url": "https://github.com/solana-labs/wallet-adapter/issues"
},
"homepage": "https://github.com/solana-labs/wallet-adapter#readme",
"description": "Example application for Solana \"Sign in with Google\" integration via. Particle Auth",
"main": "config-overrides.js"
}