-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 1.95 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
{
"private": true,
"author": "Cullen Lee<cullen@mitech.ai>",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"vercel_install": "npm i -g cross-env && cross-env-shell \"$PREINSTALL_CMD\"",
"package_init": "git submodule update --init --recursive && npm install",
"package_update": "git submodule update --remote --recursive && npm install"
},
"dependencies": {
"@mitech/shared-components": "file:packages/shared-components",
"@tailwindcss/typography": "^0.5.13",
"@vercel/analytics": "^1.1.1",
"@vercel/speed-insights": "^1.0.5",
"ai": "^3.2.11",
"autoprefixer": "^10.4.19",
"axios": "^1.6.5",
"html2canvas": "^1.4.1",
"js-cookie": ">=3.0.5",
"jspdf": "^2.5.1",
"lucide-react": "^0.407.0",
"next": ">=14.2.4",
"radix-ui": "^1.0.1",
"react": "^18.3.1",
"react-dropzone": "^14.2.3",
"tailwind-merge": "^2.3.0",
"tailwindcss": "^3.4.4",
"tailwindcss-animate": "^1.0.7",
"xlsx": "^0.18.5",
"zod": "^3.23.7"
},
"prettier": {
"arrowParens": "always",
"singleQuote": true,
"tabWidth": 2,
"trailingComma": "none"
},
"peerDependencies": {
"@tailwindcss/typography": ">=0.5.10",
"@types/js-cookie": ">=3.0.6",
"@types/node": ">=20.13.0",
"@types/react": ">=18.3.3",
"@types/react-dom": ">=18.3.0",
"autoprefixer": ">=10.4.19",
"clsx": ">=2.1.1",
"eslint": ">=8.52.0",
"eslint-config-next": ">=14.2.3",
"js-cookie": ">=3.0.5",
"next": ">=14.2.4",
"postcss": ">=8.4.38",
"prettier": ">=3.0.3",
"react-toastify": ">=10.0.5",
"sharp": ">=0.33.2",
"tailwindcss": ">=3.4.3",
"typescript": ">=5.2.2"
},
"devDependencies": {
"@types/estree": "^1.0.5",
"@types/js-cookie": "^3.0.6",
"@types/json5": "^2.2.0",
"@types/node": "20.14.10",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"typescript": "5.5.3"
}
}