-
Notifications
You must be signed in to change notification settings - Fork 88
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.57 KB
/
Copy pathpackage.json
File metadata and controls
49 lines (49 loc) · 1.57 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
49
{
"name": "particle-auth-core-vite-app",
"private": true,
"version": "1.0.0",
"type": "module",
"description": "Example application showcasing the implementation of Particle Auth Core for social logins within Avalanche applications.",
"scripts": {
"dev": "tsup --watch",
"build": "echo 'Build skipped for this package'",
"preview": "vite preview",
"lint": "eslint src/ --ext .ts,.tsx --no-ignore",
"lint:fix": "eslint src/ --ext .ts,.tsx --fix --no-ignore",
"format": "prettier --write \"src/**/*.{ts,tsx}\"",
"test": "jest",
"clean": "rm -rf node_modules; rm -rf .turbo;"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/node": "^24.0.0",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"@vitejs/plugin-react": "^6.0.0",
"eslint": "^9.0.0",
"eslint-config-prettier": "^10.1.5",
"eslint-plugin-prettier": "^5.4.0",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^7.0.0",
"prettier": "^3.0.0",
"typescript": "^6.0.0",
"vite": "^8.0.0"
},
"dependencies": {
"@particle-network/aa": "^2.0.2",
"@particle-network/auth-core-modal": "^1.3.6",
"@particle-network/chains": "^1.3.16",
"@particle-network/connect": "^1.2.1",
"@particle-network/connect-react-ui": "^1.2.1",
"@particle-network/provider": "^1.2.1",
"antd": "^6.0.0",
"ethers": "^6.14.1",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"viem": "^2.29.4"
}
}