forked from vitogit/vue-chessboard-examples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.88 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
{
"name": "blockchain-chess-lounge",
"description": "A peer to peer chess application which settles on the blockchain",
"version": "1.1.0",
"author": "vitogit <[email protected]>",
"license": "GPLv3",
"scripts": {
"new:migration": "cp migrations/x_upgrade_lobby.js migrations/$(date +%s)_upgrade_lobby.js",
"new:test": "truffle create test",
"serve": "vue-cli-service serve",
"serve:static": "http-server --cors '*' dist",
"build": "vue-cli-service build",
"deploy": "aws --profile hbpcb s3 sync --delete dist s3://blockchain-chess-lounge",
"migrate": "truffle compile --all && truffle migrate",
"test": "truffle test --network test",
"lint": "vue-cli-service lint"
},
"dependencies": {
"@openzeppelin/contracts": "^4.7.1",
"@openzeppelin/contracts-upgradeable": "^4.7.2",
"@thirdweb-dev/sdk": "^2.3.33",
"@vue/composition-api": "^1.7.0",
"@walletconnect/web3-provider": "^1.8.0",
"amplitude-js": "^8.19.0",
"axios": "^0.27.2",
"bytesize-icons": "^1.4.0",
"chess.js": "^0.13.3",
"chessground": "^8.2.1",
"core-js": "^3.6.4",
"ethers": "^5.6.9",
"humanize-duration": "^3.27.2",
"pinia": "^2.0.14",
"process": "^0.11.10",
"sleep-promise": "^9.1.0",
"spinthatshit": "^1.0.4",
"underscore": "^1.13.4",
"vue": "^2.6.11",
"vue-amplitude-js": "^1.0.5",
"vue-chessboard": "^0.6.6",
"vue-qr": "^4.0.9",
"vue-recaptcha-v3": "^1.9.0",
"vue-router": "3.5.2"
},
"devDependencies": {
"@openzeppelin/truffle-upgrades": "^1.15.1",
"@truffle/hdwallet-provider": "^2.0.11",
"@vue/cli-plugin-babel": "~5.0.6",
"@vue/cli-service": "~5.0.6",
"file-loader": "^6.2.0",
"http-server": "^14.1.1",
"node-sass": "^7.0.1",
"sass-loader": "^13.0.1",
"vue-loader": "^17.0.0",
"vue-svg-loader": "^0.16.0",
"vue-template-compiler": "^2.6.14"
}
}