forked from project-serum/swap-ui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
79 lines (79 loc) · 2.3 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
76
77
78
79
{
"name": "@port.finance/swap-ui",
"version": "0.0.3",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"license": "MIT",
"author": "Port Finance <[email protected]>",
"dependencies": {
"@material-ui/core": "^4.12.3",
"@material-ui/icons": "^4.11.2",
"@material-ui/lab": "^4.0.0-alpha.60",
"@project-serum/serum": "^0.13.58",
"@project-serum/swap": "^0.1.0-alpha.35",
"@solana/spl-token": "^0.1.8",
"material-ui-popup-state": "^1.9.3",
"react-async-hook": "^3.6.2"
},
"peerDependencies": {
"@project-serum/anchor": "^0.14.0",
"@solana/spl-token-registry": "*",
"@solana/web3.js": "^1.17.1",
"react": "^17.0.2",
"dayjs": "^1.10.7"
},
"scripts": {
"lint": "prettier src/** example/src/** --check",
"lint:fix": "prettier src/** example/src/** -w",
"build": "rm -rf dist && tsc --build tsconfig.json",
"docs": "typedoc --excludePrivate --out ./docs src/index.tsx --includeVersion --readme none",
"prepare": "tsc --build tsconfig.json"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"devDependencies": {
"@fontsource/roboto": "4.5.0",
"@material-ui/core": "^4.12.3",
"@material-ui/icons": "^4.11.2",
"@material-ui/lab": "^4.0.0-alpha.60",
"@project-serum/anchor": "^0.14.0",
"@project-serum/serum": "^0.13.58",
"@project-serum/sol-wallet-adapter": "^0.2.5",
"@project-serum/swap": "^0.1.0-alpha.35",
"@solana/spl-token": "^0.1.8",
"@solana/web3.js": "^1.24.1",
"@testing-library/jest-dom": "^5.14.1",
"@testing-library/react": "^12.0.0",
"@testing-library/user-event": "^13.2.1",
"@types/bs58": "^4.0.1",
"@types/jest": "^27.0.1",
"@types/node": "^16.7.10",
"@types/react": "^17.0.19",
"@types/react-dom": "^17.0.9",
"bs58": "^4.0.1",
"gh-pages": "^3.2.3",
"material-ui-popup-state": "^1.9.3",
"notistack": "^1.0.10",
"prettier": "^2.3.2",
"react": "^17.0.2",
"react-app-rewire-alias": "^1.0.3",
"react-app-rewired": "^2.1.8",
"react-async-hook": "^3.6.2",
"react-dom": "^17.0.2",
"react-scripts": "4.0.3",
"typedoc": "^0.21.9",
"typescript": "^4.4.2",
"web-vitals": "^2.1.0",
"dayjs": "^1.10.7"
},
"publishConfig": {
"access": "public"
},
"files": [
"dist"
]
}