-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
109 lines (109 loc) · 3.63 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
97
98
99
100
101
102
103
104
105
106
107
108
109
{
"private": true,
"name": "create-react-app-starter",
"version": "0.1.0",
"dependencies": {
"@chakra-ui/icons": "^2.0.2",
"@chakra-ui/react": "^1.8.6",
"@chakra-ui/theme": "^1.14.0",
"@chakra-ui/theme-tools": "^1.3.6",
"@choc-ui/chakra-autocomplete": "^4.22.0",
"@dcaf-labs/drip-sdk": "0.5.0",
"@dcaf-labs/drip-ts": "0.4.0",
"@emotion/react": "^11",
"@emotion/styled": "^11",
"@project-serum/anchor": "^0.25.0",
"@solana-mobile/wallet-adapter-mobile": "^0.9.7",
"@solana/spl-token": "^0.3.5",
"@solana/wallet-adapter-base": "^0.9.18",
"@solana/wallet-adapter-react": "^0.15.20",
"@solana/wallet-adapter-react-ui": "^0.9.18",
"@solana/wallet-adapter-wallets": "^0.19.5",
"@solana/web3.js": "^1.66.2",
"bn.js": "^5.2.0",
"classnames": "^2.3.1",
"coingecko-api": "^1.0.10",
"crypto-browserify": "^3.12.0",
"decimal.js": "^10.3.1",
"framer-motion": "^6",
"gapi-script": "^1.2.0",
"moment": "^2.29.4",
"numeral": "^2.0.6",
"react": "^17.0.2",
"react-datetime-picker": "3.5.0",
"react-dom": "^17.0.2",
"react-ga": "^3.3.1",
"react-icons": "^4.3.1",
"react-router-dom": "^6.2.2",
"styled-components": "^5.3.3",
"swr": "^1.3.0",
"tiny-invariant": "^1.2.0",
"use-async-memo": "^1.2.3",
"web-vitals": "^2.1.4"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.16.2",
"@testing-library/react": "^12.1.2",
"@testing-library/user-event": "^13.5.0",
"@types/bn.js": "^5.1.0",
"@types/bs58": "^4.0.1",
"@types/classnames": "^2.3.1",
"@types/coingecko-api": "^1.0.10",
"@types/decimal.js": "^7.4.0",
"@types/jest": "^27.4.0",
"@types/node": "^17.0.17",
"@types/numeral": "^2.0.2",
"@types/react": "^17.0.39",
"@types/react-datepicker": "^4.3.4",
"@types/react-datetime-picker": "^3.4.1",
"@types/react-dom": "^17.0.11",
"@types/react-router-dom": "^5.3.3",
"@types/styled-components": "^5.1.24",
"@typescript-eslint/eslint-plugin": "^5.15.0",
"@typescript-eslint/parser": "^5.15.0",
"eslint": "^8.14.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.29.4",
"husky": "^7.0.4",
"prettier": "^2.5.1",
"pretty-quick": "^3.1.3",
"process": "^0.11.10",
"react-app-rewired": "^2.1.11",
"react-scripts": "5.0.0",
"source-map-explorer": "^2.5.3",
"source-map-loader": "^3.0.1",
"typescript": "^4.5.5"
},
"scripts": {
"analyze": "source-map-explorer 'build/static/js/*.js'",
"prepare": "yarn run husky install",
"start-devnet-staging": "REACT_APP_SOLANA_RPC_URL=https://api.devnet.solana.com REACT_APP_NETWORK=devnet REACT_APP_DRIP_PROGRAM_ID=F1NyoZsUhJzcpGyoEqpDNbUMKVvCnSXcCki1nN3ycAeo REACT_APP_CLIENT_ENV=staging yarn start",
"start-mainnet-prod": "REACT_APP_SOLANA_RPC_URL=https://api.mainnet.solana.com REACT_APP_NETWORK=mainnet REACT_APP_DRIP_PROGRAM_ID=dripTrkvSyQKvkyWg7oi4jmeEGMA5scSYowHArJ9Vwk REACT_APP_CLIENT_ENV=production yarn start",
"start": "react-app-rewired start",
"build": "react-app-rewired build",
"test": "react-app-rewired test",
"eject": "react-scripts eject",
"lint": "eslint .",
"lint:fix": "eslint --fix",
"format": "prettier --write './**/*.{js,jsx,ts,tsx,css,md,json}' --config ./.prettierrc"
},
"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"
]
}
}