-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.89 KB
/
Copy pathpackage.json
File metadata and controls
62 lines (62 loc) · 1.89 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
60
61
62
{
"name": "atomic-swap",
"private": true,
"version": "3.1.1",
"scripts": {
"pretty": "prettier --write \"./src/**/*.{ts,tsx,json}\"",
"lint": "eslint --ext .js,.ts ./src",
"lint-fix": "eslint --ext .js,.ts ./src --fix",
"dev": "vite",
"test": "vitest",
"build": "tsc && vite build",
"build-debug": "tsc && vite build --mode debug",
"preview": "vite preview"
},
"dependencies": {
"@chakra-ui/react": "^1.8.6",
"@emotion/react": "^11.7.0",
"@emotion/styled": "^11.6.0",
"@emurgo/cardano-serialization-lib-browser": "^11.0.5",
"@emurgo/cip14-js": "^3.0.1",
"buffer": "^6.0.3",
"cardano-web-bridge-wrapper": "^3.4.0",
"dexie": "3.2.0",
"dexie-react-hooks": "1.0.7",
"formik": "^2.2.9",
"framer-motion": "^4.1.17",
"peerjs": "^1.3.2",
"qr-code-styling": "^1.6.0-rc.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-icons": "^4.3.1",
"react-kawaii": "^0.18.0",
"react-router-dom": "^6.2.1",
"react-scripts": "^5.0.0",
"react-virtualized-auto-sizer": "^1.0.6",
"react-window": "^1.8.6",
"react-window-dynamic-list": "^2.4.2",
"web-vitals": "^1.1.2",
"zod": "^3.22.4"
},
"devDependencies": {
"@emurgo/cardano-serialization-lib-nodejs": "^11.0.5",
"@types/node": "^18.7.2",
"@types/react": "^17.0.33",
"@types/react-dom": "^17.0.10",
"@types/react-kawaii": "^0.17.0",
"@types/react-virtualized-auto-sizer": "^1.0.1",
"@types/react-window": "^1.8.5",
"@typescript-eslint/eslint-plugin": "^5.10.1",
"@typescript-eslint/parser": "^5.10.1",
"@vitejs/plugin-react": "^2.0.0",
"eslint": "^8.7.0",
"eslint-plugin-react": "^7.28.0",
"prettier": "2.6.2",
"typescript": "^4.5.4",
"vite": "^3.1.3",
"vite-plugin-pwa": "^0.12.3",
"vite-plugin-top-level-await": "^1.1.1",
"vite-plugin-wasm": "^2.1.0",
"vitest": "^0.20.2"
}
}