-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·59 lines (59 loc) · 1.81 KB
/
Copy pathpackage.json
File metadata and controls
executable file
·59 lines (59 loc) · 1.81 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
50
51
52
53
54
55
56
57
58
59
{
"name": "fcl-wallet-extension-demo",
"version": "0.1.0",
"description": "A sample Chrome extension wallet for Flow that is compatible with FCL.",
"scripts": {
"dev": "vite build --mode development --watch",
"build": "vite build --config vite.script.config.js && vite build",
"preview": "vite preview",
"prettier": "prettier --write '**/*.{js,jsx,json,css,scss,md}'"
},
"dependencies": {
"@chakra-ui/icons": "^2.2.4",
"@chakra-ui/layout": "^2.3.1",
"@chakra-ui/react": "^2.10.9",
"@chakra-ui/system": "^2.6.2",
"@chakra-ui/toast": "^2.1.0",
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.1",
"@noble/hashes": "^1.8.0",
"@onflow/fcl": "1.20.0",
"@onflow/rlp": "^1.2.3",
"@onflow/transport-http": "1.13.0",
"@onflow/types": "^1.4.1",
"browser-passworder": "^2.0.3",
"buffer": "^6.0.3",
"elliptic": "^6.6.1",
"framer-motion": "^12.23.9",
"https-browserify": "^1.0.0",
"node-forge": "^1.3.1",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"react-icons": "^5.5.0",
"react-router": "^5.3.4",
"react-router-dom": "^5.3.4",
"react-router-transition": "^2.1.0",
"sha3": "^2.1.4",
"stream-http": "^3.2.0",
"url": "^0.11.4"
},
"devDependencies": {
"@types/chrome": "^0.1.1",
"@types/react": "^19.1.8",
"@types/react-dom": "^19.1.6",
"@vitejs/plugin-react": "^4.7.0",
"eslint": "^9.31.0",
"eslint-config-react-app": "^7.0.1",
"eslint-plugin-flowtype": "^8.0.3",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^5.2.0",
"prettier": "^3.6.2",
"sass": "^1.89.2",
"typescript": "^5.8.3",
"vite": "^7.0.6",
"vite-plugin-node-polyfills": "^0.24.0"
},
"type": "module"
}