-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
86 lines (86 loc) · 2.49 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
83
84
85
86
{
"name": "gdsc-farmingdale-links-api",
"description": "",
"author": "Mike Odnis <mikeodnis3242004@gmail.com>",
"homepage": "https://github.com/WomB0ComB0/gdsc-farmingdale-links-api#readme",
"version": "1.0.0",
"type": "module",
"license": "MIT",
"scripts": {
"setup": "husky install",
"dev": "concurrently \"nodemon -w src/server/* \" \"bun src/server/server.ts\"",
"start": "bun run start:pre && cross-env NODE=production bun src/server/server.ts",
"start:pre": "bunx puppeteer browsers install chrome",
"build": "vite build",
"test": "vitest",
"lint": "eslint --cache --report-unused-disable-directives ."
},
"dependencies": {
"@hono/zod-validator": "^0.4.1",
"axios": "^1.7.2",
"body-parser": "^1.20.2",
"cheerio": "^1.0.0-rc.12",
"concurrently": "^8.2.2",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"cross-env": "^7.0.3",
"csurf": "^1.11.0",
"envalid": "^8.0.0",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-plugin-react-refresh": "^0.4.8",
"express": "~4.21.0",
"express-rate-limit": "^7.3.1",
"hono": "^4.4.13",
"http-errors": "^2.0.0",
"jose": "^5.6.3",
"million": "^3.1.11",
"nodemon": "^3.1.4",
"puppeteer": "^22.13.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-router-dom": "^6.24.1",
"start-server-and-test": "^2.0.4",
"ts-loader": "^9.5.1",
"tsx": "^4.16.2",
"vite-express": "*",
"vitest": "^2.0.2",
"wait-on": "^7.2.0",
"web-auth-library": "^1.0.3",
"web-vitals": "^4.2.1",
"zod": "^3.23.8"
},
"devDependencies": {
"@biomejs/biome": "1.8.3",
"@types/cors": "^2.8.17",
"@types/csurf": "^1.11.5",
"@types/express": "^4.17.21",
"@types/jest": "^29.5.12",
"@types/puppeteer": "^7.0.4",
"@types/react-dom": "^18.3.0",
"@types/supertest": "^6.0.2",
"@vitejs/plugin-react": "4.3.1",
"jest": "^29.7.0",
"supertest": "^7.0.0",
"ts-jest": "^29.2.2",
"ts-node": "^10.9.2",
"typescript": "^5.5.3",
"vite": "^5.3.3",
"@types/bun": "latest"
},
"browserslist": {
"production": [">0.2%", "not dead", "not op_mini all"],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"bugs": {
"url": "https://github.com/WomB0ComB0/gdsc-farmingdale-links-api/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/WomB0ComB0/gdsc-farmingdale-links-api.git"
},
"module": "index.ts"
}