-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
54 lines (54 loc) · 1.46 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
{
"name": "chessnut",
"private": true,
"version": "0.1.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"format": "prettier -w .",
"start:mod": "node dist/moderator/index.js",
"build:mod": "tsc -p tsconfig.mod.json && swc -d dist src/moderator src/common"
},
"dependencies": {
"@cashu/cashu-ts": "^0.8.1",
"@chakra-ui/icons": "^2.1.1",
"@chakra-ui/react": "^2.8.1",
"@emotion/react": "^11.11.1",
"@emotion/styled": "^11.11.0",
"@keyv/sqlite": "^3.6.5",
"@react-chess/chessground": "^1.3.4",
"chess.js": "^1.0.0-beta.6",
"dayjs": "^1.11.9",
"dotenv": "^16.3.1",
"framer-motion": "^10.16.4",
"keyv": "^4.5.3",
"nostr-tools": "^1.15.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-error-boundary": "^4.0.11",
"react-qr-barcode-scanner": "^1.0.6",
"react-router-dom": "^6.15.0",
"react-use": "^17.4.0",
"unique-names-generator": "^4.7.1",
"webln": "^0.3.2",
"ws": "^8.14.1"
},
"devDependencies": {
"@swc-node/register": "^1.6.7",
"@swc/cli": "^0.1.62",
"@swc/core": "^1.3.84",
"@types/node": "^18.15.13",
"@types/react": "^18.2.21",
"@types/react-dom": "^18.2.7",
"@vitejs/plugin-react-swc": "^3.3.2",
"prettier": "^3.0.3",
"typescript": "^5.2.2",
"vite": "^4.4.9"
},
"resolutions": {
"@types/react": "^18.2.21",
"@types/react-dom": "^18.2.7"
}
}