-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 2.93 KB
/
package.json
File metadata and controls
87 lines (87 loc) · 2.93 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
{
"name": "flightboard",
"version": "0.2.4",
"private": false,
"bin": {
"flightboard-tui": "./bin/flightboard-tui",
"flightboard-web": "./bin/flightboard-web",
"flightboard-lookup": "./bin/flightboard-lookup"
},
"scripts": {
"dev": "next dev --turbopack",
"build": "next build && npm run build:cli",
"build:cli": "tsc -p tsconfig.cli.json",
"start": "next start",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"test:unit": "jest --testPathIgnorePatterns='e2e|integration'",
"test:integration": "jest --testMatch='**/tests/integration/**/*.test.ts'",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui",
"test:e2e:debug": "playwright test --debug",
"test:all": "npm run test:unit && npm run test:integration && npm run test:e2e",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
"lint:fix": "eslint . --ext .js,.jsx,.ts,.tsx --fix",
"typecheck": "tsc --noEmit",
"flightboard-web": "next dev --turbopack",
"flightboard-tui": "tsx src/cli/tui.ts",
"flightboard-lookup": "tsx src/cli/lookup.ts",
"docker:build": "docker build -t flightboard:latest .",
"docker:run": "docker run -p 3000:3000 --env-file .env.local flightboard:latest",
"docker:compose": "docker-compose up",
"docker:compose:build": "docker-compose up --build"
},
"dependencies": {
"@radix-ui/react-dropdown-menu": "^2.1.16",
"@radix-ui/react-label": "^2.1.7",
"@radix-ui/react-select": "^2.2.6",
"@radix-ui/react-slot": "^1.2.3",
"@radix-ui/react-tabs": "^1.1.13",
"@types/blessed": "^0.1.25",
"blessed": "^0.1.81",
"chalk": "^5.6.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"commander": "^14.0.0",
"figlet": "^1.8.2",
"lucide-react": "^0.542.0",
"next": "15.5.2",
"react": "19.1.0",
"react-dom": "19.1.0",
"tailwind-merge": "^3.3.1"
},
"devDependencies": {
"@eslint/js": "^9.34.0",
"@next/eslint-plugin-next": "^15.5.2",
"@playwright/test": "^1.55.0",
"@swc/jest": "^0.2.39",
"@tailwindcss/postcss": "^4",
"@testing-library/jest-dom": "^6.8.0",
"@testing-library/react": "^16.3.0",
"@testing-library/user-event": "^14.6.1",
"@types/jest": "^30.0.0",
"@types/node": "^20",
"@types/node-fetch": "^2.6.13",
"@types/react": "^19",
"@types/react-dom": "^19",
"@types/supertest": "^6.0.3",
"@typescript-eslint/eslint-plugin": "^8.41.0",
"@typescript-eslint/parser": "^8.41.0",
"dotenv": "^17.2.1",
"eslint": "^9.34.0",
"eslint-config-next": "^15.5.2",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^5.2.0",
"jest": "^30.1.1",
"jest-environment-jsdom": "^30.1.1",
"node-fetch": "^3.3.2",
"playwright": "^1.55.0",
"supertest": "^7.1.4",
"tailwindcss": "^4",
"ts-node": "^10.9.2",
"tsx": "^4.20.5",
"tw-animate-css": "^1.3.7",
"typescript": "^5"
}
}