forked from mento-protocol/reserve-site
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
103 lines (103 loc) · 3.34 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
{
"name": "@mento-protocol/reserve-web",
"version": "3.0.0",
"private": true,
"packageManager": "[email protected]",
"engines": {
"node": "18"
},
"lint-staged": {
"*.{ts,tsx,md,yaml}": "prettier --write",
"*.{ts,tsx}": "eslint"
},
"scripts": {
"dev": "next dev",
"build": "tsc",
"build:next": "next build",
"deploy": "yarn run kill-dev; yarn run clean-next-cache; yarn run build:next; gcloud app deploy $MANIFEST",
"deploy:stage": "gcloud config set project celo-reserve-site-281118; NODE_ENV=production DEPLOY_ENV=development MANIFEST=stage.yaml yarn run deploy && yarn view -s stage",
"deploy:prod": "gcloud config set project celo-reserve-site-281118; NODE_ENV=production DEPLOY_ENV=production MANIFEST=production.yaml yarn run deploy && yarn view",
"format": "yarn prettier",
"view": "gcloud app browse",
"kill-dev": "kill -9 $(lsof -ti :3000)",
"clean-next-cache": "rm -rf .next",
"start": "next start -p ${PORT:-8080}",
"test": "jest",
"lint": "eslint --fix .",
"prettier": "prettier --config .prettierrc 'src/**/*.{ts, tsx}' '*.yaml' --write --list-different",
"prepare": "husky",
"secrets:get": "./scripts/get-secrets.sh"
},
"dependencies": {
"@celo/contractkit": "4.0.0",
"@headlessui/react": "^1.7.18",
"@sentry/nextjs": "^7.119.0",
"@vercel/analytics": "^1.0.1",
"bignumber.js": "^9.0.2",
"chart.js": "^4.4.3",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.0",
"framer-motion": "^11.0.24",
"front-matter": "^4.0.2",
"graphql": "^15.7.2",
"graphql-request": "^3.7.0",
"markdown-to-jsx": "^7.1.7",
"mockdate": "^3.0.2",
"next": "^12.0.9",
"node-cache": "^5.1.2",
"raw-loader": "^4.0.1",
"react": "^18.3.1",
"react-chartjs-2": "^5.2.0",
"react-dom": "^18.3.1",
"swr": "^2.2.5",
"tailwind-merge": "^2.5.2",
"xml2js": "^0.4.23"
},
"devDependencies": {
"@babel/cli": "^7.25.6",
"@babel/core": "^7.25.2",
"@babel/preset-env": "^7.25.4",
"@babel/runtime": "^7.25.6",
"@eslint/js": "^9.10.0",
"@ethersproject/providers": "^5.7.2",
"@savvywombat/tailwindcss-grid-areas": "^4.0.0",
"@tailwindcss/typography": "^0.5.10",
"@testing-library/jest-dom": "^6.5.0",
"@types/eslint__js": "^8.42.3",
"@types/jest": "^29.5.12",
"@types/node": "^22.5.4",
"@types/node-fetch": "^2.6.11",
"@types/react": "latest",
"@types/react-dom": "latest",
"@types/xml2js": "^0.4.8",
"@typescript-eslint/eslint-plugin": "^8.4.0",
"@typescript-eslint/parser": "^8.4.0",
"autoprefixer": "^10.4.19",
"codecov": "^3.6.5",
"dotenv": "^16.0.3",
"eslint": "^9.10.0",
"eslint-config-next": "^14.2.8",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"ethers": "^5.7.2",
"husky": "^9.1.5",
"jest": "^29.7.0",
"jest-circus": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jest-snapshot": "^29.7.0",
"lint-staged": "^15.2.10",
"msw": "^0.33.2",
"node-fetch": "^2.7.0",
"postcss": "^8.4.45",
"prettier": "^3.3.3",
"prettier-plugin-tailwindcss": "^0.6.6",
"pretty-quick": "^3.1.1",
"sass": "^1.78.0",
"tailwindcss": "^3.4.10",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.5.4",
"typescript-eslint": "^8.4.0"
}
}