This repository has been archived by the owner on Jun 22, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathpackage.json
executable file
·58 lines (58 loc) · 1.64 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
{
"name": "yearn-watch",
"version": "1.0.0",
"private": false,
"scripts": {
"dev": "next",
"dev:ts": "tsc --watch",
"start": "tsc && next build && next start",
"build": "tsc && next build",
"export": "tsc && next build && next export -o ipfs",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx"
},
"dependencies": {
"@headlessui/react": "^1.7.2",
"@yearn-finance/web-lib": "^0.13.18",
"autoprefixer": "^10.4.11",
"axios": "^0.27.2",
"ethcall": "^4.8.2",
"ethers": "^5.7.1",
"framer-motion": "^7.3.5",
"graphql": "^16.6.0",
"graphql-request": "^5.0.0",
"kbar": "^0.1.0-beta.36",
"next": "^12.3.0",
"next-pwa": "5.6.0",
"next-seo": "^5.5.0",
"nprogress": "^0.2.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-paginate": "^8.1.4",
"swr": "^1.3.0",
"tailwindcss": "^3.1.8"
},
"devDependencies": {
"@types/next": "^9.0.0",
"@types/node": "^18.7.18",
"@types/react": "^18.0.20",
"@types/react-dom": "^18.0.6",
"@typescript-eslint/eslint-plugin": "^5.37.0",
"@typescript-eslint/parser": "^5.37.0",
"dotenv-webpack": "^8.0.1",
"eslint": "^8.23.1",
"eslint-config-next": "^12.3.0",
"eslint-import-resolver-typescript": "^3.5.1",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-react": "^7.31.8",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-tailwindcss": "^3.6.2",
"eslint-plugin-unused-imports": "^2.0.0",
"postcss": "^8.4.16",
"postcss-import": "^15.0.0",
"postcss-nesting": "^10.2.0",
"sass": "^1.54.9",
"sharp": "^0.31.0",
"ts-loader": "^9.3.1",
"typescript": "^4.8.3"
}
}