-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
36 lines (36 loc) · 1.07 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
{
"name": "wolta-app",
"version": "0.0.1",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"prebuild": "npm run assets",
"assets": "run-s assets:clone assets:copy assets:clean",
"assets:copy": "cp -r ./assets/blockchains/ethereum ./public/blockchains/ && cp -r ./assets/blockchains/polygon ./public/blockchains/",
"assets:clone": "git clone --depth=1 [email protected]:trustwallet/assets.git --branch=master",
"assets:clean": "rm -rf ./assets"
},
"dependencies": {
"@ethersproject/units": "^5.3.0",
"@headlessui/react": "^1.3.0",
"@tailwindcss/forms": "^0.3.3",
"@usedapp/core": "^0.3.24",
"next": "11.0.0",
"react": "17.0.2",
"react-dom": "17.0.2",
"recharts": "^2.0.9",
"universal-base64": "^2.1.0"
},
"devDependencies": {
"@types/react": "17.0.11",
"autoprefixer": "^10.2.6",
"eslint": "7.29.0",
"eslint-config-next": "11.0.0",
"npm-run-all": "^4.1.5",
"postcss": "^8.3.5",
"tailwindcss": "^2.2.4",
"typescript": "4.3.4"
}
}