-
Notifications
You must be signed in to change notification settings - Fork 19
/
package.json
82 lines (82 loc) · 2.61 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
{
"name": "with-typescript-eslint-jest",
"author": "@erikdstock",
"license": "MIT",
"version": "1.0.0",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"prepare": "husky install",
"tc": "yarn type-check --watch",
"type-check": "tsc --pretty --noEmit",
"format": "prettier --write .",
"lint": "eslint . --ext ts --ext tsx --ext js --ext jsx",
"test": "jest",
"test-all": "yarn lint && yarn type-check && yarn test",
"types:contentful": "export $(cat .env.local | awk '!/^\\s*#/' | awk '!/^\\s*$/'); npx cf-content-types-generator --spaceId $NEXT_PUBLIC_CONTENTFUL_SPACE_ID --token $NEXT_PUBLIC_CONTENTFUL_MANAGEMENT_TOKEN -o contentful/types -X && prettier --write contentful/types",
"update-category-pages": "node contentful/updateCategoryPages.ts"
},
"engines": {
"node": ">=18.x"
},
"lint-staged": {
"*.@(ts|tsx|js|jsx)": [
"yarn format"
]
},
"dependencies": {
"@blockworks-foundation/mango-v4": "^0.31.4",
"@contentful/rich-text-react-renderer": "^15.19.0",
"@coral-xyz/anchor": "^0.30.1",
"@headlessui/react": "^1.7.17",
"@heroicons/react": "^2.0.18",
"@solana/spl-stake-pool": "^1.1.5",
"@solana/wallet-adapter-base": "^0.9.23",
"@solana/web3.js": "^1.94.0",
"@tanstack/react-query": "^5.8.4",
"@tippyjs/react": "^4.2.6",
"bn.js": "^5.2.1",
"contentful": "^10.6.12",
"contentful-management": "^11.6.1",
"dayjs": "^1.11.10",
"decimal.js": "^10.4.3",
"dotenv": "^16.3.1",
"immer": "^10.1.1",
"next": "^14.0.3",
"next-plausible": "^3.11.3",
"next-themes": "^0.2.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-flip-numbers": "^3.0.8",
"react-slick": "^0.30.1",
"recharts": "^2.10.0",
"slick-carousel": "^1.8.1",
"zustand": "^4.5.4"
},
"devDependencies": {
"@testing-library/react": "^14.1.2",
"@types/jest": "^29.5.8",
"@types/node": "20.9.2",
"@types/react": "18.2.37",
"@types/recharts": "^1.8.28",
"@typescript-eslint/eslint-plugin": "^6.11.0",
"@typescript-eslint/parser": "^6.11.0",
"babel-jest": "^29.7.0",
"cf-content-types-generator": "^2.12.9",
"eslint": "^8.54.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"husky": "^8.0.3",
"identity-obj-proxy": "^3.0.0",
"jest": "^29.7.0",
"jest-watch-typeahead": "^2.2.2",
"lint-staged": "^15.1.0",
"postcss": "^8.4.31",
"postcss-preset-env": "^9.3.0",
"prettier": "^3.1.0",
"tailwindcss": "^3.3.5",
"typescript": "5.2.2"
}
}