-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
116 lines (116 loc) · 4.42 KB
/
package.json
File metadata and controls
116 lines (116 loc) · 4.42 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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
{
"name": "vibefunder",
"private": true,
"version": "0.1.1",
"scripts": {
"dev": "lsof -ti:3900 | xargs -r kill -9 2>/dev/null || true && next dev --port 3900",
"build": "lsof -ti:3900 | xargs -r kill -9 2>/dev/null || true && next build",
"api": "lsof -ti:3901 | xargs -r kill -9 2>/dev/null || true && LOCAL_API=true next dev --port 3901",
"dev:test": "lsof -ti:3101 | xargs -r kill -9 2>/dev/null || true && TEST_PORT=3101 NODE_ENV=test LOCAL_API=true next dev --port 3101",
"postinstall": "prisma generate",
"test": "jest",
"test:with-server": "concurrently -k -s first \"npm run dev:test\" \"wait-on http://localhost:3101 && npm test\"",
"test:full": "CLEANUP_TEST_DATA=true npm run test:with-server",
"test:quick": "./scripts/test-runner.sh quick",
"test:all": "./scripts/test-runner.sh full",
"test:clean": "CLEANUP_TEST_DATA=true ./scripts/test-runner.sh full",
"test:unit": "jest __tests__/unit/",
"test:integration": "jest __tests__/integration/",
"test:ai": "jest __tests__/ai/",
"test:api": "jest __tests__/api/",
"test:security": "jest __tests__/security/",
"test:payments": "jest __tests__/payments/ --config=jest.config.mjs",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"test:coverage:html": "jest --coverage --coverageReporters=html",
"test:ci": "jest --ci --coverage --maxWorkers=2",
"test:staged": "jest --findRelatedTests",
"coverage:html": "jest --coverage --coverageReporters=html --coverageDirectory=coverage/html",
"coverage:lcov": "jest --coverage --coverageReporters=lcov --coverageDirectory=coverage",
"coverage:check": "npx tsx scripts/coverage-check.ts",
"test:benchmark": "node scripts/test-benchmark.js",
"format:check": "prettier --check .",
"format:fix": "prettier --write .",
"type-check": "tsc --noEmit",
"db:migrate": "prisma migrate dev",
"db:reset": "prisma migrate reset --force",
"prepare": "husky install || true",
"start": "next start",
"lint": "next lint",
"prisma:gen": "prisma generate",
"prisma:migrate": "prisma migrate dev --name init",
"prisma:studio": "prisma studio",
"seed": "tsx prisma/seed.ts"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.637.0",
"@aws-sdk/s3-request-presigner": "^3.637.0",
"@headlessui/react": "^2.2.7",
"@prisma/client": "^6.15.0",
"@simplewebauthn/browser": "^10.0.0",
"@simplewebauthn/server": "^10.0.1",
"@tailwindcss/postcss": "^4.1.11",
"@tailwindcss/typography": "^0.5.16",
"@testing-library/jest-dom": "^6.6.4",
"@testing-library/react": "^16.3.0",
"@tiptap/extension-character-count": "^3.0.9",
"@tiptap/extension-code-block-lowlight": "^3.0.9",
"@tiptap/extension-color": "^3.0.9",
"@tiptap/extension-highlight": "^3.0.9",
"@tiptap/extension-image": "^3.0.9",
"@tiptap/extension-link": "^3.0.9",
"@tiptap/extension-placeholder": "^3.0.9",
"@tiptap/extension-table": "^3.0.9",
"@tiptap/extension-table-cell": "^3.0.9",
"@tiptap/extension-table-header": "^3.0.9",
"@tiptap/extension-table-row": "^3.0.9",
"@tiptap/extension-text-style": "^3.0.9",
"@tiptap/extension-underline": "^3.0.9",
"@tiptap/pm": "^3.0.9",
"@tiptap/react": "^3.0.9",
"@tiptap/starter-kit": "^3.0.9",
"@vercel/blob": "^1.1.1",
"bcryptjs": "^2.4.3",
"clsx": "^2.1.1",
"date-fns": "^3.6.0",
"diff": "^8.0.2",
"highlight.js": "^11.11.1",
"jose": "^5.2.0",
"lowlight": "^3.3.0",
"lucide-react": "^0.536.0",
"next": "^15.5.2",
"nodemailer": "^6.9.8",
"openai": "^5.11.0",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"stripe": "^16.6.0",
"zod": "^3.23.8"
},
"devDependencies": {
"@faker-js/faker": "^10.0.0",
"@types/jest": "^29.5.8",
"@types/node": "^20.11.30",
"@types/nodemailer": "^6.4.14",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"audit-ci": "^7.1.0",
"autoprefixer": "^10.4.20",
"concurrently": "^9.2.1",
"eslint": "^9.5.0",
"eslint-config-next": "^15.0.3",
"husky": "^9.0.11",
"jest": "^29.7.0",
"jest-environment-node": "^29.7.0",
"jest-fetch-mock": "^3.0.3",
"jest-junit": "^16.0.0",
"jest-mock-extended": "^4.0.0",
"postcss": "^8.4.47",
"prettier": "^3.2.5",
"prisma": "^6.15.0",
"tailwindcss": "^4.0.0",
"ts-jest": "^29.1.1",
"tsx": "^4.7.0",
"typescript": "^5.4.5",
"wait-on": "^8.0.4"
}
}