-
Notifications
You must be signed in to change notification settings - Fork 27
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.37 KB
/
Copy pathpackage.json
File metadata and controls
77 lines (77 loc) · 2.37 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
{
"name": "@lapse/lapse-client",
"version": "2.0.0",
"description": "The canonical Lapse web client",
"private": true,
"scripts": {
"dev": "tsx scripts/generate-build-info.ts && next dev --webpack",
"build": "tsx scripts/generate-build-info.ts && next build --webpack",
"start": "next start",
"lint": "eslint",
"test": "vitest",
"test:ui": "vitest --ui",
"test:coverage": "vitest --coverage",
"test:oauth": "vitest src/__tests__/oauthFlow.test.ts",
"preinstall": "npx only-allow pnpm",
"check-types": "tsc --noEmit"
},
"dependencies": {
"@hackclub/icons": "^0.0.15",
"@hackclub/lapse-api": "workspace:*",
"@hackclub/lapse-shared": "workspace:*",
"@orpc/client": "^1.13.6",
"@orpc/contract": "^1.13.5",
"@orpc/openapi": "^1.13.5",
"@orpc/openapi-client": "^1.13.5",
"@posthog/nextjs-config": "^1.8.19",
"@scure/bip39": "^2.0.1",
"@types/platform": "^1.3.6",
"clsx": "^2.1.1",
"fetch-retry": "^6.0.0",
"mediabunny": "^1.38.0",
"next": "^16.1.6",
"platform": "^1.3.6",
"posthog-js": "^1.360.0",
"posthog-node": "^5.28.0",
"pretty-bytes": "^7.1.0",
"react": "19.2.3",
"react-dom": "19.2.3",
"react-drag-drop-files": "^3.1.0",
"tus-js-client": "^4.3.1",
"valibot": "^1.2.0",
"webpack": "^5.104.1"
},
"devDependencies": {
"@babel/core": "^7.28.5",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/preset-env": "^7.28.5",
"@eslint/eslintrc": "^3.3.3",
"@faker-js/faker": "^10.2.0",
"@inquirer/prompts": "^8.1.0",
"@svgr/webpack": "^8.1.0",
"@tailwindcss/postcss": "^4.1.18",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.1",
"@types/node": "^25.0.3",
"@types/react": "^19.2.7",
"@types/react-dom": "^19.2.3",
"@types/supertest": "^6.0.3",
"@typescript-eslint/eslint-plugin": "^8.50.0",
"@typescript-eslint/parser": "^8.50.0",
"@vitejs/plugin-react": "^5.1.2",
"@vitest/coverage-v8": "4.0.16",
"@vitest/ui": "^4.0.16",
"babel-loader": "^10.0.0",
"eslint": "^9.39.2",
"eslint-config-next": "16.0.10",
"node-mocks-http": "^1.17.2",
"supertest": "^7.1.4",
"tailwindcss": "^4.1.18",
"terser-webpack-plugin": "^5.3.16",
"ts-node": "^10.9.2",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"vi-mock": "^1.0.0",
"vitest": "^4.0.16"
}
}