forked from Sparker73/dapp-solana-playground
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 1.85 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
60
61
62
63
64
65
66
67
68
{
"name": "dapp-solana-playground",
"version": "1.0.0",
"private": true,
"engines": {
"node": ">=16"
},
"files": [
"public",
"src",
".editorconfig",
".eslintrc.json",
".gitignore",
".prettierignore",
".prettierrc",
"LICENSE",
"next.config.js",
"next-env.d.ts",
"package.json",
"README.md",
"tsconfig.json"
],
"scripts": {
"clean": "shx rm -rf .next .swc lib",
"dev": "NODE_OPTIONS='--inspect' next dev",
"build": "next build",
"start": "next start",
"lint": "next lint"
},
"dependencies": {
"@solana/spl-token": "^0.1.8",
"@solana/wallet-adapter-base": "^0.9.17",
"@solana/wallet-adapter-react": "^0.15.19",
"@solana/wallet-adapter-react-ui": "^0.9.17",
"@solana/wallet-adapter-wallets": "^0.19.0",
"@solana/web3.js": "1.61.0",
"bignumber.js": "^9.1.0",
"bn.js": "^5.2.0",
"borsh": "^0.7",
"bs58": "^4.0",
"buffer": "^6.0.3",
"buffer-layout": "^1.2.2",
"dateformat": "^5.0",
"jazzicon": "^1.5",
"moment": "2.29.4",
"moment-timezone": "0.5.35",
"next": "^12.2.5",
"next-themes": "^0.2.1",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"sass": "^1.55.0"
},
"devDependencies": {
"@types/bn.js": "^5.1.0",
"@types/bs58": "^4.0.1",
"@types/dateformat": "^5.0.0",
"@types/node-fetch": "^2.6.2",
"@types/react": "^18.0.0",
"@types/react-dom": "^18.0.0",
"@zeit/next-sass": "^1.0.1",
"eslint": "^8.22.0",
"eslint-config-next": "^12.2.5",
"node-sass": "^7.0.3",
"prettier": "^2.7.1",
"shx": "^0.3.4",
"typescript": "^4.7.4"
}
}