-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
117 lines (117 loc) · 3.38 KB
/
package.json
File metadata and controls
117 lines (117 loc) · 3.38 KB
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
{
"name": "next-boilerplate",
"version": "14.2.4",
"private": false,
"author": "Noah Duong",
"license": "MIT",
"engines": {
"node": ">=18.17.0"
},
"keywords": [
"next",
"boilerplate",
"noahduong",
"typescript",
"tailwindcss",
"eslint",
"prettier",
"husky",
"lint-staged",
"storybook",
"vite",
"vitest"
],
"scripts": {
"dev": "next dev",
"build": "cross-env ANALYZE=true next build",
"start": "node .next/standalone/server.js",
"start:dev": "next start",
"lint": "next lint",
"lint-staged": "lint-staged",
"prepare": "husky install",
"build:development": "make build-development",
"start:development": "make start-development",
"build:staging": "make build-staging",
"start:staging": "make start-staging",
"build:production": "make build-production",
"start:production": "make start-production",
"test": "vitest --ui",
"test:coverage": "vitest --coverage",
"test:check": "vitest",
"validate_barch": "sh scripts/validate_branch_name.sh",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build"
},
"dependencies": {
"@nextui-org/react": "2.4.2",
"@sentry/nextjs": "8.9.2",
"@solana/wallet-adapter-base": "0.9.23",
"@solana/wallet-adapter-react": "0.15.35",
"@solana/wallet-adapter-wallets": "0.19.32",
"@solana/web3.js": "1.93.0",
"@t3-oss/env-nextjs": "0.10.1",
"canvas-confetti": "1.9.3",
"clsx": "2.1.1",
"cookies-next": "^4.2.1",
"framer-motion": "^11.2.10",
"next": "14.2.4",
"nextjs-toploader": "1.6.12",
"qs": "^6.12.1",
"react": "18.3.1",
"react-dom": "18.3.1",
"server-only": "^0.0.1",
"sharp": "^0.32.6",
"sonner": "1.5.0",
"sweetalert2": "11.12.0",
"tailwind-merge": "2.3.0",
"tailwindcss-animate": "1.0.7",
"usehooks-ts": "3.1.0",
"zod": "3.23.8",
"zustand": "^4.5.2"
},
"devDependencies": {
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"@ianvs/prettier-plugin-sort-imports": "^4.2.1",
"@next/bundle-analyzer": "^14.2.4",
"@sentry/webpack-plugin": "2.18.0",
"@storybook/addon-essentials": "8.1.10",
"@storybook/addon-interactions": "8.1.10",
"@storybook/addon-links": "8.1.10",
"@storybook/addon-onboarding": "8.1.10",
"@storybook/blocks": "8.1.10",
"@storybook/nextjs": "8.1.10",
"@storybook/react": "8.1.10",
"@storybook/testing-library": "0.2.2",
"@testing-library/react": "^16.0.0",
"@types/canvas-confetti": "1.6.4",
"@types/node": "^20.14.5",
"@types/qs": "^6.9.15",
"@types/react": "^18.3.3",
"@vitejs/plugin-react": "^4.3.1",
"@vitest/coverage-v8": "^1.6.0",
"@vitest/ui": "^1.6.0",
"autoprefixer": "10.4.19",
"chalk": "^5.3.0",
"cross-env": "7.0.3",
"dotenv": "16.4.5",
"eslint": "8.0.0",
"eslint-config-google": "^0.14.0",
"eslint-config-next": "^14.2.4",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-storybook": "0.8.0",
"husky": "^9.0.11",
"jsdom": "^24.1.0",
"lint-staged": "^15.2.7",
"postcss": "8.4.38",
"postcss-import": "16.1.0",
"prettier": "^3.3.2",
"storybook": "8.1.10",
"stylelint": "16.6.1",
"stylelint-config-standard-scss": "13.1.0",
"tailwindcss": "3.4.4",
"typescript": "^5.4.5",
"vite-tsconfig-paths": "^4.3.2",
"vitest": "^1.6.0"
}
}