-
Notifications
You must be signed in to change notification settings - Fork 42
/
package.json
122 lines (122 loc) · 3.78 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
119
120
121
122
{
"name": "push-website",
"version": "1.0.0",
"scripts": {
"docusaurus": "docusaurus",
"start": "docusaurus start",
"build": "docusaurus build",
"swizzle": "docusaurus swizzle",
"build:pr:preview": "node build.mjs preview && NODE_OPTIONS=--max-old-space-size=8192 yarn build",
"deploy": "node build.mjs prod && NODE_OPTIONS=--max-old-space-size=8192 yarn build && echo 'push.org' > ./build/CNAME & gh-pages -d build -r [email protected]:push-protocol/push-website-prod-deployment.git",
"clear": "docusaurus clear",
"serve": "docusaurus serve",
"write-translations": "docusaurus write-translations",
"write-heading-ids": "docusaurus write-heading-ids",
"typecheck": "tsc",
"prepare": "husky install",
"format": "prettier --write .",
"lint": "eslint .",
"test": "jest"
},
"lint-staged": {
"src/**/*.{js,ts,jsx,tsx,json}": "prettier --write",
"src/**/*.{ts,js,jsx,tsx,json}": "eslint"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"dependencies": {
"@docusaurus/core": "3.0.1",
"@docusaurus/cssnano-preset": "3.0.1",
"@docusaurus/plugin-client-redirects": "3.0.1",
"@docusaurus/plugin-content-blog": "3.0.1",
"@docusaurus/plugin-content-docs": "3.0.1",
"@docusaurus/plugin-google-gtag": "3.0.1",
"@docusaurus/preset-classic": "3.0.1",
"@docusaurus/theme-live-codeblock": "3.0.1",
"@docusaurus/theme-mermaid": "3.0.1",
"@mdx-js/react": "^3.0.0",
"@pushprotocol/restapi": "1.7.20",
"@pushprotocol/uiweb": "1.7.1",
"@splidejs/react-splide": "^0.7.12",
"@splidejs/splide-extension-auto-scroll": "^0.5.3",
"@splinetool/react-spline": "2.2.6",
"@splinetool/runtime": "^0.9.270",
"@web3-react/core": "6.1.9",
"assert": "^2.0.0",
"browserify-zlib": "^0.2.0",
"chalk": "5.3.0",
"clsx": "^1.2.1",
"crypto-browserify": "^3.12.0",
"dotenv": "^16.4.5",
"envfile": "^7.1.0",
"ethers": "^5.6.8",
"gsap": "3.11.1",
"https-browserify": "^1.0.0",
"i18next": "^23.2.6",
"i18next-browser-languagedetector": "^7.1.0",
"i18next-http-backend": "^2.2.1",
"jimp": "0.22.10",
"os-browserify": "^0.3.0",
"path": "0.12.7",
"prism-react-renderer": "^2.1.0",
"react": "^18.2.0",
"react-cookie": "^7.0.2",
"react-dom": "^18.2.0",
"react-fast-marquee": "1.3.5",
"react-helmet-async": "1.3.0",
"react-i18next": "13.2.2",
"react-icons": "^4.9.0",
"react-intersection-observer": "^9.4.3",
"react-loader-spinner": "5.3.4",
"react-loading-skeleton": "^3.1.0",
"react-marquee-slider": "^1.1.5",
"react-modal": "^3.16.1",
"react-player": "^2.12.0",
"react-responsive-modal": "^6.4.2",
"react-use": "^17.4.0",
"sonner": "^1.7.0",
"stream-browserify": "3.0.0",
"stream-http": "^3.2.0",
"styled-components": "^6.0.8",
"swiper": "^11.0.3",
"url": "^0.11.3",
"vanilla-tilt": "^1.8.0",
"viem": "^2.21.18",
"vm-browserify": "^1.1.2"
},
"devDependencies": {
"@docusaurus/eslint-plugin": "^3.3.2",
"@docusaurus/module-type-aliases": "3.0.1",
"@docusaurus/types": "3.0.1",
"@tsconfig/docusaurus": "^1.0.5",
"@typescript-eslint/eslint-plugin": "^7.9.0",
"@typescript-eslint/parser": "^7.9.0",
"babel-plugin-styled-components": "^2.1.4",
"eslint": "^8.51.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.1",
"husky": "^8.0.0",
"jest": "^29.7.0",
"lint-staged": "^15.2.2",
"prettier": "^3.0.3",
"typescript": "^4.7.4"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"engines": {
"node": ">=18.0"
}
}