-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
77 lines (77 loc) · 2.5 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
{
"name": "trip-time-booker",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"dev:expose-webhook": "tmole 3000",
"dev:refresh-webhooks": "cross-env NODE_ENV=\"development\" tsx commands/refresh-webhooks.ts",
"build": "next build",
"start": "concurrently -n app,cron \"npm:start:app\" \"npm:start:cron\" -k",
"start:app": "next start",
"start:cron": "pnpm create-production-dotenv && cron && tail -f /var/log/cron.log",
"create-production-dotenv": "printenv > .env.production.local",
"refresh-webhooks": "cross-env NODE_ENV=\"production\" tsx commands/refresh-webhooks.ts",
"lint": "next lint --max-warnings=0",
"check-types": "tsc",
"reformat": "prettier --write .",
"check-style": "prettier --check .",
"prepare": "husky install"
},
"dependencies": {
"@googlemaps/google-maps-services-js": "3.3.32",
"@logtail/pino": "0.4.0",
"@next/env": "13.3.3",
"@sentry/nextjs": "7.77.0",
"@sentry/profiling-node": "1.2.6",
"@tanstack/react-query": "4.32.0",
"@tanstack/react-query-devtools": "4.32.0",
"@types/express": "4.17.17",
"@types/node": "20.3.2",
"@types/react": "18.2.14",
"@types/react-dom": "18.2.6",
"autoprefixer": "10.4.14",
"axios": "1.4.0",
"clsx": "2.0.0",
"concurrently": "8.2.1",
"cross-env": "7.0.3",
"envalid": "7.3.1",
"eslint": "8.43.0",
"eslint-config-next": "13.4.7",
"firebase-admin": "11.9.0",
"flowbite": "1.7.0",
"flowbite-react": "0.5.0",
"googleapis": "118.0.0",
"next": "13.3.3",
"pino": "8.14.1",
"pino-pretty": "10.0.0",
"postcss": "8.4.24",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-google-autocomplete": "2.7.3",
"react-toastify": "9.1.3",
"supertokens-auth-react": "0.33.1",
"supertokens-node": "14.1.2",
"supertokens-web-js": "0.6.0",
"tailwindcss": "3.3.2",
"tsx": "3.12.8"
},
"devDependencies": {
"@tanstack/eslint-plugin-query": "4.29.25",
"@typescript-eslint/eslint-plugin": "5.60.1",
"@typescript-eslint/parser": "5.60.1",
"eslint": "8.43.0",
"eslint-config-airbnb": "19.0.4",
"eslint-config-airbnb-typescript": "17.0.0",
"eslint-config-prettier": "8.8.0",
"eslint-plugin-import": "2.27.5",
"eslint-plugin-jsx-a11y": "6.7.1",
"eslint-plugin-prettier": "4.2.1",
"eslint-plugin-react-hooks": "4.6.0",
"husky": "8.0.3",
"lint-staged": "13.2.3",
"prettier": "2.8.8",
"tunnelmole": "2.1.12",
"typescript": "5.1.5"
}
}