-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 2.03 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 2.03 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
{
"name": "basednet",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"db:migrate": "node scripts/migrate.js",
"db:seed": "node scripts/seed.js",
"setup": "node scripts/setup.js",
"setup:db": "node scripts/setup-db.js",
"setup:auth": "node scripts/setup-indieauth.js",
"setup:ipfs": "node scripts/setup-ipfs.js",
"setup:monitoring": "node scripts/setup-monitoring.js",
"check:env": "node scripts/check-env.js",
"check:launch": "node scripts/pre-launch-check.js",
"check:deployment": "node scripts/deployment-ready.js",
"deploy": "node scripts/deploy-vercel.js",
"security:audit": "npm audit && npx snyk test",
"prepare": "husky install"
},
"dependencies": {
"@sentry/nextjs": "^7.0.0",
"@upstash/ratelimit": "^2.0.5",
"@upstash/redis": "^1.34.5",
"cors": "^2.8.5",
"dotenv": "^16.4.7",
"firebase": "^11.4.0",
"firebase-admin": "^13.2.0",
"helmet": "^7.0.0",
"ipfs-http-client": "^56.0.0",
"next": "14.1.0",
"next-auth": "^4.24.5",
"pg": "^8.7.1",
"rate-limiter-flexible": "^3.0.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"zod": "^3.22.0"
},
"devDependencies": {
"@testing-library/jest-dom": "^6.1.0",
"@testing-library/react": "^14.1.0",
"@testing-library/user-event": "^14.5.0",
"@types/jest": "^29.5.0",
"@types/node": "^20.11.0",
"@types/pg": "^8.11.11",
"@types/react": "^18.2.0",
"@types/react-dom": "^18.2.0",
"autoprefixer": "^10.4.16",
"eslint": "^8.56.0",
"eslint-config-next": "14.1.0",
"husky": "^8.0.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"lint-staged": "^15.0.0",
"msw": "^2.0.0",
"postcss": "^8.4.32",
"prettier": "^3.0.0",
"snyk": "^1.0.0",
"tailwindcss": "^3.4.0",
"ts-jest": "^29.1.0",
"typescript": "^5.3.0"
}
}