-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 2.48 KB
/
Copy pathpackage.json
File metadata and controls
90 lines (90 loc) · 2.48 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
{
"name": "quick-tripper",
"type": "module",
"version": "0.3.0",
"private": true,
"description": "Privacy-first, zero-backend AI travel companion",
"author": "GehDoc",
"license": "MIT",
"funding": {
"url": "https://github.com/GehDoc/quick-tripper/?sponsor=1"
},
"homepage": "https://gehdoc.github.io/quick-tripper/",
"repository": {
"type": "git",
"url": "https://github.com/gehdoc/quick-tripper.git"
},
"bugs": {
"url": "https://github.com/gehdoc/quick-tripper/issues"
},
"keywords": [
"nextjs",
"ai",
"travel",
"serverless",
"privacy-first",
"huggingface",
"itinerary-planner",
"google-maps",
"tailwind-css"
],
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --check .",
"format:fix": "prettier --write .",
"type-check": "tsc --noEmit",
"test": "vitest run",
"test:e2e": "playwright test",
"test:watch": "vitest",
"check": "npm run lint && npm run format && npm run type-check && npm run test",
"check:fast": "npm run lint && npm run format && npm run type-check",
"fix": "npm run lint:fix && npm run format:fix",
"predeploy": "npm run build",
"deploy": "gh-pages -d out",
"prepare": "husky"
},
"lint-staged": {
"**/*.{js,mjs,ts,tsx,json,md,yml,html,css,scss}": "prettier --write",
"src/**/*.{ts,tsx}": "eslint --fix"
},
"dependencies": {
"@tailwindcss/typography": "^0.5.20",
"daisyui": "^5.5.23",
"lz-string": "^1.5.0",
"next": "16.2.9",
"react": "19.2.4",
"react-dom": "19.2.4",
"react-icons": "^5.6.0",
"react-markdown": "^10.1.0",
"rehype-raw": "^7.0.0",
"rehype-sanitize": "^6.0.0"
},
"devDependencies": {
"@playwright/test": "^1.60.0",
"@tailwindcss/postcss": "^4",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@types/lz-string": "^1.3.34",
"@types/node": "^20.19.43",
"@types/react": "^19.2.17",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^6.0.2",
"eslint": "^9",
"eslint-config-next": "16.2.9",
"eslint-plugin-react-hooks": "^7.1.1",
"eslint-plugin-react-refresh": "^0.5.2",
"gh-pages": "^6.3.0",
"husky": "^9.1.7",
"jsdom": "^29.1.1",
"lint-staged": "^17.0.7",
"prettier": "^3.8.4",
"tailwindcss": "^4",
"typescript": "^5",
"typescript-eslint": "^8.61.0",
"vitest": "^4.1.8"
}
}