-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
109 lines (109 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
{
"name": "get-reccd",
"version": "0.1.0",
"private": true,
"scripts": {
"ts": "TZ=UTC dotenv -- tsx --tsconfig ./tsconfig.bin.json",
"ts:ci": "TZ=UTC tsx --tsconfig ./tsconfig.bin.json",
"dev": "next dev",
"build": "CI_OVERRIDES=true next build",
"postbuild": "next-sitemap",
"start": "next start",
"lint": "concurrently \"next lint --max-warnings=0\" \"prettier --check .\"",
"typecheck": "tsc --noEmit --incremental",
"test": "jest",
"prettier": "prettier --write .",
"storybook": "storybook dev -p 6006",
"audit": "concurrently \"next lint --max-warnings=0 --fix\" \"prettier --log-level silent --write .\" \"npm run typecheck\" \"npm run test -- -u\"",
"build-storybook": "storybook build",
"codegen": "graphql-codegen --config codegen.ts",
"codegen:schemas": "graphql-codegen --config codegen-schemas.ts"
},
"dependencies": {
"@hookform/resolvers": "^3.3.4",
"@next/bundle-analyzer": "^14.2.2",
"@radix-ui/react-label": "^2.0.2",
"@radix-ui/react-slot": "^1.0.2",
"@sentry/nextjs": "^7.91.0",
"@vercel/og": "^0.6.1",
"bowser": "^2.11.0",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.0",
"date-fns": "^2.30.0",
"decimal.js": "^10.4.3",
"dotenv": "^16.3.1",
"dotenv-cli": "^7.3.0",
"ethers": "^5.7.2",
"fast-json-stable-stringify": "^2.1.0",
"framer-motion": "^11.0.3",
"fs-extra": "^11.2.0",
"js-cookie": "^3.0.5",
"little-state-machine": "^4.8.0",
"lodash-es": "^4.17.21",
"lucide-react": "^0.294.0",
"nanoid": "^5.0.5",
"next": "^14.1.0",
"next-sitemap": "^4.2.3",
"p-retry": "^6.2.0",
"pino-pretty": "^11.0.0",
"react": "^18",
"react-dom": "^18",
"react-hook-form": "^7.51.3",
"react-use": "^17.5.0",
"react-wrap-balancer": "^1.1.0",
"server-only": "^0.0.1",
"tailwind-merge": "^2.2.2",
"tailwindcss-animate": "^1.0.7",
"thirdweb": "^5.13.0",
"undici": "^6.0.1",
"zod": "^3.22.5"
},
"devDependencies": {
"@faker-js/faker": "^8.3.1",
"@graphql-codegen/cli": "5.0.0",
"@graphql-codegen/client-preset": "4.1.0",
"@graphql-codegen/graphql-modules-preset": "^4.0.1",
"@graphql-codegen/introspection": "^4.0.0",
"@graphql-codegen/near-operation-file-preset": "^3.0.0",
"@graphql-codegen/schema-ast": "^4.0.0",
"@graphql-codegen/typescript-resolvers": "^4.0.1",
"@tailwindcss/typography": "^0.5.10",
"@total-typescript/ts-reset": "^0.5.1",
"@types/fs-extra": "^11.0.4",
"@types/google.maps": "^3.54.10",
"@types/jest": "^29.5.11",
"@types/js-cookie": "^3.0.6",
"@types/lodash-es": "^4.17.12",
"@types/mixpanel-browser": "^2.48.1",
"@types/negotiator": "^0.6.3",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"@types/sanitize-html": "^2.9.5",
"@types/yargs": "^17.0.32",
"@types/youtube-player": "^5.5.11",
"@typescript-eslint/eslint-plugin": "^6.14.0",
"@typescript-eslint/parser": "^6.14.0",
"autoprefixer": "^10.4.19",
"concurrently": "^8.2.2",
"eslint": "^8",
"eslint-config-next": "14.0.4",
"eslint-plugin-formatjs": "^4.11.3",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-no-relative-import-paths": "^1.5.3",
"eslint-plugin-simple-import-sort": "^11.0.0",
"eslint-plugin-storybook": "^0.6.15",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"postcss": "^8.4.38",
"prettier": "^3.1.1",
"prettier-plugin-tailwindcss": "^0.5.11",
"storybook": "^8.0.6",
"tailwindcss": "^3.4.3",
"ts-node": "^10.9.2",
"tsconfig-paths": "^4.2.0",
"tsx": "^4.7.0",
"typescript": "^5.3.3",
"yargs": "^17.7.2"
}
}