forked from UjjwalGupta49/solana-base-app
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
75 lines (75 loc) · 2.2 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
69
70
71
72
73
74
75
{
"name": "solana-base-app",
"version": "0.1.5",
"author": "Ujjwal Gupta",
"repository": {
"type": "git",
"url": "git+https://github.com/UjjwalGupta49/solana-base-app.git"
},
"license": "ISC",
"publishConfig": {
"access": "public"
},
"files": [
"src",
".editorconfig",
".eslintignore",
".eslintrc.json",
".gitignore",
".prettierignore",
".prettierrc",
"LICENSE",
"package.json",
"tsconfig.json"
],
"bin": {
"solana-base-app": "bin/entrypoint.js"
},
"scripts": {
"clean": "shx rm -rf dist .parcel-cache",
"build": "yarn clean && parcel build src/index.html",
"start": "yarn clean && parcel src/index.html",
"fmt": "prettier --write '{*,**/*}.{js,ts,jsx,tsx,json}'",
"lint": "eslint . && prettier --check '{*,**/*}.{js,ts,jsx,tsx,json}'",
"lint:fix": "eslint --fix . && yarn fmt",
"nuke": "shx rm -rf node_modules yarn.lock"
},
"dependencies": {
"@emotion/react": "^11.7.1",
"@emotion/styled": "^11.6.0",
"@mui/icons-material": "^5.3.0",
"@mui/material": "^5.3.0",
"@solana/buffer-layout": "^4.0.0",
"@solana/pay": "^0.1.1",
"@solana/qr-code-styling": "^1.6.0-beta.0",
"@solana/spl-token": "^0.2.0-alpha.2",
"@solana/wallet-adapter-base": "^0.9.2",
"@solana/wallet-adapter-react": "^0.15.2",
"@solana/wallet-adapter-react-ui": "^0.9.3",
"@solana/wallet-adapter-wallets": "^0.14.2",
"@solana/web3.js": "^1.31.0",
"colors": "^1.4.0",
"react": "^17.0.0",
"react-dom": "^17.0.2",
"react-router": "^6.2.1",
"react-router-dom": "^6.2.1"
},
"devDependencies": {
"@types/eslint": "^8.2.2",
"@types/node": "^16.11.14",
"@types/prettier": "^2.4.3",
"@types/react": "^17.0.38",
"@types/react-dom": "^17.0.11",
"@typescript-eslint/eslint-plugin": "^5.9.1",
"@typescript-eslint/parser": "^5.9.1",
"shx": "^0.3.4",
"tslib": "^2.3.1",
"typescript": "^4.5.4"
},
"description": "## solana-base-app is for Solana beginners to get them up and running fast.",
"bugs": {
"url": "https://github.com/UjjwalGupta49/solana-base-app/issues"
},
"homepage": "https://github.com/UjjwalGupta49/solana-base-app#readme",
"main": "index.js"
}