-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
59 lines (59 loc) · 1.59 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": "play2earn",
"version": "0.0.10",
"description": "Convert any web2 game in play2earn game",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"test": "jest --config jestconfig.json",
"build": "tsc",
"format": "prettier --write \"src/**/*.ts\" \"src/**/*.js\"",
"lint": "tslint -p tsconfig.json",
"prepare": "npm run build",
"preversion": "npm run lint"
},
"author": "mbouthemy",
"repository": {
"type": "git",
"url": "git+https://github.com/mbouthemy/play2earn.git"
},
"keywords": [
"Play2earn",
"Solana"
],
"license": "ISC",
"bugs": {
"url": "https://github.com/mbouthemy/play2earn/issues"
},
"homepage": "https://github.com/mbouthemy/play2earn#readme",
"devDependencies": {
"@types/bn.js": "^5.1.0",
"@types/jest": "^28.1.4",
"@types/node-fetch": "^2.6.2",
"@types/react": "^17.0.25",
"@types/react-dom": "^18.0.6",
"@types/react-transition-group": "^4.4.5",
"jest": "^28.1.2",
"prettier": "^2.7.1",
"react": "^17.0.2",
"react-dom": "17.0.2",
"ts-jest": "^28.0.5",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"typescript": "^4.7.4"
},
"files": [
"lib/**/*"
],
"dependencies": {
"@solana/spl-token": "^0.1.8",
"@solana/wallet-adapter-base": "^0.6.0",
"@solana/wallet-adapter-react": "^0.12.3",
"@solana/wallet-adapter-react-ui": "^0.5.0",
"@solana/wallet-adapter-wallets": "^0.10.0",
"@solana/web3.js": "^1.29.2",
"bignumber.js": "^9.0.1",
"react-loader-spinner": "^5.3.4",
"react-toastify": "^8.2.0"
}
}