-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
59 lines (59 loc) · 1.72 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
{
"name": "chess-dapp-substrate",
"version": "1.0.0",
"description": "Play chess on a Substrate Chain.",
"author": "AlexD10S",
"license": "MIT",
"type": "module",
"scripts": {
"clean": "rm -rf .parcel-cache dist out node_modules yarn.lock",
"start": "parcel index.html --open",
"build": "parcel build ./index.html"
},
"source": "/index.tsx",
"app": "dist/index.html",
"targets": {
"app": {}
},
"browserslist": [
"last 2 versions"
],
"dependencies": {
"@parcel/service-worker": "^2.9.3",
"@polkadot/api": "^10.3.4",
"@polkadot/extension-inject": "0.46.5",
"@polkadot/react-identicon": "^3.1.4",
"@polkadot/types": "^10.3.4",
"@tailwindcss/postcss7-compat": "^2.2.17",
"@tailwindcss/typography": "^0.5.9",
"@types/bn.js": "^5.1.1",
"@types/chess.js": "^0.13.4",
"chess.js": "1.0.0-beta.6",
"react": "^18.2.0",
"react-chessboard": "^4.0.1",
"react-dom": "^18.2.0",
"react-spinners": "^0.13.8",
"react-toastify": "^9.1.2",
"tailwindcss": "^3.3.3"
},
"devDependencies": {
"@parcel/compressor-brotli": "2.9.3",
"@parcel/compressor-gzip": "2.9.3",
"@parcel/packager-raw-url": "2.9.3",
"@parcel/transformer-svg-react": "^2.9.3",
"@parcel/transformer-webmanifest": "2.9.3",
"@polkadot-onboard/core": "0.0.10",
"@polkadot-onboard/injected-wallets": "0.0.10",
"@polkadot-onboard/react": "0.0.10",
"@polkadot-onboard/wallet-connect": "0.0.10",
"@types/react": "^18.0.35",
"@types/react-dom": "^18.0.11",
"autoprefixer": "^9",
"buffer": "^6.0.3",
"parcel": "2.9.3",
"parcel-resolver-fix-ts-esm-shit": "^0.0.1",
"postcss": "^8.2.1",
"process": "0.11.10",
"typescript": "^5.0.4"
}
}