forked from NoahDuongMaster/vibe-code-stack-for-ceos
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
111 lines (111 loc) · 3.34 KB
/
Copy pathpackage.json
File metadata and controls
111 lines (111 loc) · 3.34 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
{
"name": "next-boilerplate",
"version": "2.0.5",
"private": false,
"author": "https://duongnamtruong.com",
"license": "MIT",
"engines": {
"node": ">=18.17.0"
},
"keywords": [
"next",
"boilerplate",
"truongdn",
"duongnamtruong"
],
"scripts": {
"dev": "next dev",
"build": "cross-env ANALYZE=true next build",
"start": "node .next/standalone/server.js",
"lint": "next lint",
"lint-staged": "lint-staged",
"prepare": "husky install",
"run:prod": "docker-compose -f docker-compose.yml build && docker-compose -f docker-compose.yml up -d",
"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",
"compile-graphql-types": "graphql-codegen",
"watch-graphql-types": "graphql-codegen -w"
},
"dependencies": {
"@ant-design/cssinjs": "1.18.4",
"@ant-design/icons": "^5.3.0",
"@apollo/client": "3.9.5",
"@apollo/server": "4.10.0",
"@as-integrations/next": "3.0.0",
"@graphql-tools/schema": "10.0.3",
"@t3-oss/env-nextjs": "0.9.2",
"@tanstack/react-query": "^5.24.1",
"antd": "^5.14.2",
"axios": "^1.6.7",
"clsx": "^2.1.0",
"cookies-next": "^4.1.1",
"deepmerge": "4.3.1",
"framer-motion": "^11.0.6",
"graphql": "16.8.1",
"immer": "^10.0.3",
"lodash": "4.17.21",
"million": "3.0.3",
"next": "13.5.4",
"next-seo": "^6.5.0",
"nprogress": "0.2.0",
"qs": "^6.11.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-spinners": "0.13.8",
"sass": "^1.71.1",
"server-only": "^0.0.1",
"sharp": "^0.32.6",
"sweetalert2": "11.10.5",
"zod": "3.22.4",
"zustand": "^4.5.1"
},
"devDependencies": {
"@commitlint/cli": "^18.6.1",
"@commitlint/config-conventional": "^18.6.2",
"@graphql-codegen/cli": "5.0.2",
"@graphql-codegen/client-preset": "4.2.4",
"@graphql-typed-document-node/core": "3.2.0",
"@ianvs/prettier-plugin-sort-imports": "^4.1.1",
"@next/bundle-analyzer": "^14.1.0",
"@storybook/addon-essentials": "7.6.17",
"@storybook/addon-interactions": "7.6.17",
"@storybook/addon-links": "7.6.17",
"@storybook/addon-onboarding": "1.0.11",
"@storybook/blocks": "7.6.17",
"@storybook/nextjs": "7.6.17",
"@storybook/react": "7.6.17",
"@storybook/testing-library": "0.2.2",
"@tanstack/eslint-plugin-query": "^5.20.1",
"@tanstack/react-query-devtools": "^5.24.1",
"@testing-library/react": "^14.2.1",
"@types/node": "^20.11.20",
"@types/nprogress": "0.2.3",
"@types/qs": "^6.9.11",
"@types/react": "^18.2.58",
"@vitejs/plugin-react": "^4.2.1",
"@vitest/coverage-v8": "^1.3.1",
"@vitest/ui": "^1.3.1",
"chalk": "^5.3.0",
"cross-env": "7.0.3",
"dotenv": "16.4.5",
"eslint": "8.57.0",
"eslint-config-google": "^0.14.0",
"eslint-config-next": "^14.1.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-storybook": "0.8.0",
"husky": "^9.0.11",
"jsdom": "^24.0.0",
"lint-staged": "^15.2.2",
"prettier": "^3.2.5",
"storybook": "7.6.17",
"stylelint": "16.2.1",
"stylelint-config-standard-scss": "13.0.0",
"typescript": "^5.3.3",
"vite-tsconfig-paths": "^4.3.1",
"vitest": "^1.3.1"
}
}