-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
118 lines (118 loc) · 3.67 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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
{
"name": "forbole-website",
"version": "4.0.0",
"private": true,
"scripts": {
"analyze-bundle": "BUNDLE_ANALYZER=true yarn build",
"build": "yarn scss-types && NODE_ENV=production next build && next-sitemap && yarn build:rss",
"build:rss": "tsx scripts/rss.xml.ts",
"dev": "next dev",
"e2e": "playwright test",
"i18next": "i18next 'src/**/*.{tsx,ts,jsx,js}'",
"lint": "bash scripts/lint.sh",
"lint:eslint": "eslint --ext .ts,.tsx,.js,.jsx .",
"lint:prettier": "prettier --check src/**/*",
"lint:prettier:fix": "prettier --write src/**/*",
"lint:scss": "stylelint './src/**/*.scss'",
"postinstall": "husky install",
"scss-types": "typed-scss-modules src",
"start": "next start",
"test": "jest src",
"type-check": "tsc"
},
"dependencies": {
"@cosmjs/amino": "^0.32.2",
"@cosmjs/encoding": "^0.32.2",
"@cosmjs/proto-signing": "^0.32.2",
"@cosmjs/stargate": "^0.32.2",
"@emotion/react": "^11.11.4",
"@emotion/server": "^11.11.0",
"@emotion/styled": "^11.11.0",
"@keplr-wallet/cosmos": "^0.12.76",
"@keplr-wallet/proto-types": "^0.12.76",
"@keplr-wallet/types": "^0.12.70",
"@mui/icons-material": "^5.15.11",
"@mui/lab": "^5.0.0-alpha.166",
"@mui/material": "^5.15.11",
"@n8tb1t/use-scroll-position": "^2.0.3",
"@next/bundle-analyzer": "^14.1.0",
"@socialgouv/matomo-next": "^1.8.1",
"@solana/web3.js": "^1.90.0",
"@solflare-wallet/sdk": "^1.4.2",
"@tryghost/admin-api": "^1.13.11",
"@tryghost/content-api": "^1.11.20",
"bignumber.js": "^9.1.2",
"dotenv": "^16.4.5",
"dotenv-defaults": "^5.0.2",
"framer-motion": "^11.0.7",
"graphql": "^16.8.1",
"isomorphic-dompurify": "^2.4.0",
"jsdom": "^24.0.0",
"markdown-to-jsx": "^7.4.1",
"million": "^3.0.3",
"next": "^14.1.0",
"next-sitemap": "^4.2.3",
"next-translate": "^2.6.2",
"next-translate-plugin": "^2.6.2",
"nodemailer": "^6.9.11",
"posthog-js": "^1.114.2",
"ramda": "^0.29.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-toastify": "^10.0.4",
"react-tooltip": "^5.26.3",
"sharp": "^0.33.2",
"swiper": "^6.8.4",
"urql": "^4.0.6",
"validator": "^13.11.0"
},
"devDependencies": {
"@commitlint/cli": "^18.6.1",
"@commitlint/config-conventional": "^18.6.2",
"@playwright/test": "^1.42.0",
"@stylistic/eslint-plugin": "^1.6.2",
"@svgr/webpack": "^8.1.0",
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"@types/jest": "^29.5.12",
"@types/node": "^20.11.23",
"@types/nodemailer": "^6.4.14",
"@types/ramda": "^0.29.10",
"@types/react": "^18.2.60",
"@types/react-dom": "^18.2.19",
"@types/rss": "^0.0.32",
"@types/validator": "^13.11.9",
"@typescript-eslint/eslint-plugin": "^7.1.0",
"@typescript-eslint/parser": "^7.1.0",
"autoprefixer": "^10.4.17",
"eslint": "^8.57.0",
"eslint-config-next": "^14.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-perfectionist": "^2.5.0",
"eslint-plugin-playwright": "^1.5.1",
"husky": "^9.0.11",
"i18next-parser": "^8.13.0",
"jest": "^29.7.0",
"postcss": "^8.4.35",
"prettier": "^3.2.5",
"rss": "^1.2.2",
"sass": "^1.71.1",
"stylelint": "^16.2.1",
"stylelint-config-standard-scss": "^13.0.0",
"stylelint-order": "^6.0.4",
"stylelint-scss": "^6.1.0",
"ts-jest": "^29.1.2",
"ts-unused-exports": "^10.0.1",
"tsx": "^4.7.1",
"typed-scss-modules": "^8.0.0",
"typescript": "^5.3.3"
},
"browserslist": [
"defaults",
"not ie < 11",
"last 2 versions",
"> 1%",
"iOS 7",
"last 3 iOS versions"
]
}