generated from TreasureProject/web3-frontend-starter-template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
72 lines (72 loc) · 2.22 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
{
"name": "treasure-gov-staking",
"private": true,
"description": "",
"license": "",
"sideEffects": false,
"scripts": {
"build": "npm run codegen && remix build",
"deploy": "fly deploy --remote-only",
"dev": "remix dev",
"start": "remix-serve build",
"typecheck": "tsc",
"codegen": "node -r dotenv/config node_modules/.bin/gql-gen",
"lint": "prettier --write 'app/**/{*.ts,*.tsx}' && eslint --fix --no-error-on-unmatched-pattern 'app/**/{*.ts,*.tsx}'",
"prepare": "husky install"
},
"dependencies": {
"@esbuild-plugins/node-globals-polyfill": "^0.2.3",
"@headlessui/react": "^1.7.11",
"@heroicons/react": "^2.0.13",
"@rainbow-me/rainbowkit": "^0.11.0",
"@remix-run/node": "^1.13.0",
"@remix-run/react": "^1.13.0",
"@remix-run/serve": "^1.13.0",
"@treasure-project/tailwind-config": "^1.0.0",
"buffer-polyfill": "npm:buffer@^6.0.3",
"ethers": "^5.7.0",
"framer-motion": "^9.0.4",
"graphql": "^16.6.0",
"graphql-request": "^5.1.0",
"graphql-tag": "^2.12.6",
"isbot": "^3.6.6",
"nprogress": "^0.2.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-hot-toast": "^2.4.0",
"react-wrap-balancer": "^0.4.0",
"remix-utils": "^6.0.0",
"tailwind-merge": "^1.9.1",
"tiny-invariant": "^1.3.1",
"wagmi": "^0.11.5"
},
"devDependencies": {
"@graphql-codegen/cli": "^3.0.0",
"@graphql-codegen/typescript": "^3.0.0",
"@graphql-codegen/typescript-graphql-request": "^4.5.8",
"@graphql-codegen/typescript-operations": "^3.0.0",
"@remix-run/dev": "^1.13.0",
"@remix-run/eslint-config": "^1.13.0",
"@remix-run/server-runtime": "^1.13.0",
"@types/nprogress": "^0.2.0",
"@types/react": "^18.0.28",
"@types/react-dom": "^18.0.11",
"@typescript-eslint/eslint-plugin": "^5.52.0",
"@typescript-eslint/parser": "^5.52.0",
"@wagmi/cli": "^0.1.6",
"eslint": "^8.34.0",
"eslint-config-prettier": "^8.6.0",
"husky": "^8.0.3",
"lint-staged": "^13.1.2",
"prettier": "^2.8.4",
"prettier-plugin-tailwindcss": "^0.2.3",
"tailwindcss": "^3.2.6",
"typescript": "^4.9.5"
},
"engines": {
"node": ">=14"
},
"lint-staged": {
"app/**/{*.ts,*.tsx}": "npm run lint"
}
}