generated from NEARBuilders/project-template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
77 lines (77 loc) · 2.36 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
{
"name": "keypom-redacted-app",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"preinstall": "npx only-allow pnpm",
"dev": "vite",
"dev:prod": "vite --mode prod",
"dev:test": "pnpm run dev --mode test",
"build": "tsc -b && vite build",
"build:analyze": "tsc -b && npx vite-bundle-visualizer -c vite.config.js",
"lint": "eslint .",
"preview": "vite preview",
"test": "playwright test",
"test:ui": "playwright test --ui",
"fmt": "prettier --write .",
"fmt:check": "prettier --check .",
"generate-pwa-assets": "pwa-assets-generator --preset minimal public/logo.svg"
},
"dependencies": {
"@chakra-ui/icons": "^2.1.1",
"@chakra-ui/react": "^2.8.2",
"@emotion/react": "^11.13.0",
"@emotion/styled": "^11.13.0",
"@keypom/core": "^1.0.6",
"@keypom/one-click-connect": "1.0.1",
"@mintbase-js/wallet": "0.6.0-beta.5",
"@near-wallet-selector/core": "^8.9.5",
"@react-oauth/google": "^0.12.1",
"@tanstack/react-query": "^5.52.2",
"@yudiel/react-qr-scanner": "^2.0.8",
"bs58": "^6.0.0",
"chroma-js": "^3.1.1",
"date-fns": "^3.6.0",
"framer-motion": "^11.3.28",
"headbreaker": "^3.0.0",
"js-sha256": "^0.11.0",
"jwt-decode": "^4.0.0",
"luxon": "^3.5.0",
"near-api-js": "^2.1.3",
"qrcode": "^1.5.4",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-error-boundary": "^4.0.13",
"react-icons": "^5.3.0",
"react-qr-code": "^2.0.11",
"react-router-dom": "^6.26.1",
"react-select": "^5.8.0",
"react-swipeable": "^7.0.1",
"tweetnacl": "^1.0.3",
"tweetnacl-util": "^0.15.1",
"zustand": "^4.5.5"
},
"devDependencies": {
"@eslint/js": "^9.9.0",
"@playwright/test": "^1.46.0",
"@tanstack/eslint-plugin-query": "^5.52.0",
"@tanstack/react-query-devtools": "^5.52.2",
"@types/node": "^22.3.0",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@vite-pwa/assets-generator": "^0.2.4",
"@vitejs/plugin-react": "^4.3.1",
"cross-env": "^7.0.3",
"eslint": "^9.9.0",
"eslint-plugin-react-hooks": "^5.1.0-rc.0",
"eslint-plugin-react-refresh": "^0.4.9",
"globals": "^15.9.0",
"prettier": "3.3.3",
"typescript": "^5.5.3",
"typescript-eslint": "^8.0.1",
"vite": "^5.4.1",
"vite-plugin-node-polyfills": "^0.22.0",
"vite-plugin-pwa": "^0.20.1"
}
}