-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.45 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.45 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
{
"name": "logicstamp-landing",
"version": "0.2.0",
"author": "Amit Levi <logicstamp.dev@gmail.com> (https://amitlevi.dev)",
"contributors": [
"LogicStamp Contributors"
],
"license": "MIT",
"engines": {
"node": ">=20.9.0",
"npm": ">=10.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/LogicStamp/logicstamp.dev"
},
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint .",
"type-check": "tsc --noEmit",
"test": "vitest",
"test:ui": "vitest --ui",
"test:coverage": "vitest --coverage",
"test:run": "vitest run"
},
"dependencies": {
"@supabase/supabase-js": "^2.49.1",
"geist": "^1.5.1",
"lucide-react": "^0.554.0",
"next": "^16.1.6",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-markdown": "^10.1.0"
},
"devDependencies": {
"@testing-library/jest-dom": "^6.1.5",
"@testing-library/react": "^14.1.2",
"@testing-library/user-event": "^14.5.1",
"@types/node": "^20.11.5",
"@types/react": "^18.2.48",
"@types/react-dom": "^18.2.18",
"@vitejs/plugin-react": "^4.2.1",
"@vitest/coverage-v8": "^4.0.0",
"@vitest/ui": "^4.0.0",
"autoprefixer": "^10.4.17",
"eslint": "^9.0.0",
"eslint-config-next": "^16.0.6",
"jsdom": "^23.0.1",
"postcss": "^8.4.33",
"tailwindcss": "^3.4.1",
"typescript": "^5.3.3",
"vite": "^6.0.0",
"vitest": "^4.0.0"
}
}