-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
54 lines (54 loc) · 1.49 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
{
"name": "yearn-web-template",
"version": "0.2.0",
"private": false,
"homepage": "./",
"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.3",
"@yearn-finance/web-lib": "^0.18.34",
"axios": "^1.1.3",
"ethcall": "^4.8.5",
"ethers": "^5.7.2",
"framer-motion": "^10.0.1",
"next": "^12.3.1",
"next-pwa": "^5.6.0",
"next-seo": "^5.8.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"tailwindcss": "^3.2.0"
},
"devDependencies": {
"@types/node": "^18.11.2",
"@types/react": "^18.0.21",
"@types/react-dom": "^18.0.6",
"@typescript-eslint/eslint-plugin": "^5.46.1",
"@typescript-eslint/parser": "^5.46.1",
"autoprefixer": "^10.4.12",
"babel-loader": "^8.2.5",
"eslint": ">= 8.25.0",
"eslint-config-next": ">= 12.3.1",
"eslint-import-resolver-typescript": ">= 3.5.1",
"eslint-plugin-brackets": ">= 0.1.3",
"eslint-plugin-import": ">= 2.26.0",
"eslint-plugin-react": ">= 7.31.10",
"eslint-plugin-react-hooks": ">= 4.6.0",
"eslint-plugin-simple-import-sort": ">= 8.0.0",
"eslint-plugin-tailwindcss": ">= 3.6.2",
"eslint-plugin-unused-imports": ">= 2.0.0",
"postcss": "^8.4.18",
"postcss-import": "^15.0.0",
"postcss-nesting": "^10.2.0",
"sass": "^1.55.0",
"sharp": "^0.31.1",
"ts-loader": "^9.4.1",
"typescript": "^4.8.4"
}
}