-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.67 KB
/
Copy pathpackage.json
File metadata and controls
66 lines (66 loc) · 1.67 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
{
"name": "wikitdb",
"version": "1.0.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"typecheck": "tsc --noEmit",
"test:ftml": "node scripts/test-ftml-runtime.mjs",
"start": "next start",
"worker": "node auto-crawler.js",
"lint": "next lint --quiet",
"test": "node --test tests/*.test.js",
"prisma:generate": "prisma generate",
"prisma:push": "prisma db push",
"prisma:studio": "prisma studio"
},
"dependencies": {
"@fontsource/anton": "^5.3.0",
"@fontsource/archivo": "^5.3.0",
"@prisma/client": "^6.9.0",
"@upstash/redis": "^1.37.0",
"autoprefixer": "^10.4.16",
"axios": "^1.17.0",
"bcryptjs": "^2.4.3",
"chart.js": "^4.5.1",
"cheerio": "^1.0.0-rc.12",
"cookie": "^0.7.0",
"jsonwebtoken": "^9.0.2",
"lightweight-charts": "^4.1.3",
"next": "15.5.21",
"node-cron": "^4.2.1",
"nodemailer": "^9.0.3",
"nvm": "^0.0.4",
"postcss": "^8.5.23",
"react": "18.2.0",
"react-dom": "18.2.0",
"recharts": "^2.15.4",
"sanitize-html": "^2.17.0",
"tailwindcss": "^3.3.5"
},
"devDependencies": {
"@eslint/eslintrc": "^3.3.1",
"@types/node": "^20.19.0",
"@types/react": "^18.3.0",
"@types/react-dom": "^18.3.0",
"eslint": "^9.39.5",
"eslint-config-next": "15.5.21",
"prisma": "^6.9.0",
"typescript": "^5.9.3"
},
"overrides": {
"postcss": "^8.5.23",
"follow-redirects": "^1.16.0",
"sharp": "^0.35.0"
},
"engines": {
"node": ">=18.0.0"
},
"allowScripts": {
"@prisma/client@6.19.3": true,
"@prisma/engines@6.19.3": true,
"prisma@6.19.3": true,
"unrs-resolver@1.12.2": true
}
}