-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
82 lines (82 loc) · 2.13 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
{
"name": "reviewpulse",
"version": "0.0.1",
"author": "ildecimo",
"description": "BigCommerce Single-click App for Reviews with Google Vertex AI",
"scripts": {
"build": "next build",
"dev": "next dev",
"lint": "next lint",
"start": "next start",
"ngrok": "ngrok http --hostname=webhooks-commerce.ildecimo.com 3000",
"type-check": "tsc --pretty --noEmit",
"format": "prettier --write **/*.{js,ts,tsx}"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"pre-push": "npm type-check"
}
},
"lint-staged": {
"*.@(ts|tsx)": [
"npm lint",
"npm format"
]
},
"engines": {
"node": "18.x"
},
"dependencies": {
"@bigcommerce/big-design": "^0.36.2",
"@bigcommerce/big-design-icons": "^0.23.2",
"@bigcommerce/big-design-theme": "^0.19.2",
"@google-ai/generativelanguage": "^0.2.1",
"@headlessui/react": "^1.7.16",
"@heroicons/react": "^2.0.18",
"@t3-oss/env-nextjs": "^0.3.1",
"@types/jsonwebtoken": "^9.0.2",
"@types/styled-components": "^5.1.26",
"clsx": "^2.0.0",
"firebase": "^9.23.0",
"google-auth-library": "^8.9.0",
"jsonwebtoken": "^9.0.0",
"next": "^13.4.2",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-gauge-component": "^1.1.12",
"styled-components": "^5.3.11",
"superjson": "1.12.2",
"zod": "^3.21.4"
},
"devDependencies": {
"@types/eslint": "^8.37.0",
"@types/node": "^18.16.0",
"@types/react": "^18.2.6",
"@types/react-dom": "^18.2.4",
"@typescript-eslint/eslint-plugin": "^5.59.6",
"@typescript-eslint/parser": "^5.59.6",
"autoprefixer": "^10.4.14",
"eslint": "^8.40.0",
"eslint-config-next": "^13.4.2",
"eslint-config-prettier": "^8.10.0",
"eslint-plugin-prettier": "^5.0.0",
"husky": "^8.0.3",
"lint-staged": "^13.2.3",
"postcss": "^8.4.27",
"prettier": "^3.0.1",
"prettier-plugin-tailwindcss": "^0.5.1",
"request": "^2.88.2",
"tailwindcss": "^3.3.3",
"typescript": "^5.0.4"
},
"eslintIgnore": [
"lib"
],
"browser": {
"fs": false,
"net": false,
"tls": false,
"child_process": false
}
}