This repository has been archived by the owner on Feb 1, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
96 lines (96 loc) · 2.91 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"name": "dmm-solana-interface-concept",
"version": "0.0.0",
"author": "[email protected]",
"repository": "",
"license": "Apache-2.0",
"publishConfig": {
"access": "public"
},
"files": [
"src",
"public",
".gitignore",
"config-overrides.js",
"LICENSE",
"package.json",
"README.md",
"tsconfig.json"
],
"dependencies": {
"@babel/runtime": "7.x",
"@metaplex-foundation/mpl-token-metadata": "1.2.5",
"@namgold/dmm-solana-sdk": "^1.1.0",
"@solana-mobile/wallet-adapter-mobile": "^0.0.1-alpha.0",
"@solana/spl-token": "^0.2.0",
"@solana/wallet-adapter-base": "^0.9.7",
"@solana/wallet-adapter-react": "^0.15.6",
"@solana/wallet-adapter-react-ui": "^0.9.8",
"@solana/wallet-adapter-wallets": "^0.16.2",
"@solana/web3.js": "^1.44.3",
"assert": "^2.0.0",
"bn.js": "^5",
"bootstrap": "^5.1.3",
"prettier": "^2.7.1",
"react": "^18.0.0",
"react-bootstrap": "^2.4.0",
"react-dom": "^18.0.0",
"react-is": "^18.2.0",
"react-router": "^6.3.0",
"react-router-dom": "^6.3.0",
"rebass": "^4.0.7",
"styled-components": "^5.3.5",
"util": "^0.12.4",
"web-vitals": "^2.1.4"
},
"devDependencies": {
"@types/node": "^18.0.0",
"@types/react": "^18.0.0",
"@types/react-dom": "^18.0.0",
"@types/react-router-dom": "^5.3.3",
"@types/rebass": "^4.0.10",
"@types/styled-components": "^5.1.25",
"@typescript-eslint/eslint-plugin": "^5.30.6",
"@typescript-eslint/parser": "^5.30.6",
"@vitejs/plugin-react": "^1.3.2",
"env-cmd": "^10.1.0",
"eslint": "^8.19.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.30.1",
"eslint-plugin-react-hooks": "^4.6.0",
"react-app-rewired": "^2.1.11",
"react-scripts": "^5.0.0",
"source-map-loader": "^4.0.0",
"typescript": "^4.5.5"
},
"resolutions": {
"autoprefixer": "10.4.5",
"bn.js": "^5"
},
"scripts": {
"start": "PORT=4001 env-cmd -f .env.testnet react-app-rewired start",
"start-production": "env-cmd -f .env.production react-app-rewired start",
"build": "env-cmd -f .env.production react-app-rewired build",
"test": "react-app-rewired test",
"eject": "react-scripts eject"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}