-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.6 KB
/
package.json
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
{
"name": "revolt-swiss-army-knife",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "nodemon --exec \"bun run build:server && NODE_EXTRA_CA_CERTS=$PWD/revolt.crt node server/.build/server/index.js\" -e ts --watch server",
"build": "bun run build:server && bun run build:client",
"build:server": "cd server && (rm -r .build ||:) && tsc && cd ..",
"build:client": "next build",
"start": "NODE_EXTRA_CA_CERTS=$PWD/revolt.crt NODE_ENV=production node server/.build/server/index.js",
"lint": "next lint"
},
"dependencies": {
"@colors/colors": "^1.6.0",
"@radix-ui/react-icons": "^1.3.0",
"@radix-ui/themes": "^2.0.3",
"@tanstack/react-query": "^5.24.2",
"@tensorflow/tfjs-node": "^4.17.0",
"dayjs": "^1.11.10",
"lru-cache": "^10.2.0",
"mongodb": "^6.3.0",
"next": "^14.2.3",
"next-auth": "^4.24.5",
"node-cron": "^3.0.3",
"react": "^18",
"react-dom": "^18",
"redis": "^4.6.13",
"revolt-api": "^0.6.9",
"revolt.js": "^7.0.0-beta.11",
"scikitjs": "^1.24.0",
"string-comparison": "^1.3.0",
"ulid": "^2.3.0",
"winbox": "^0.2.82"
},
"devDependencies": {
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"@types/node": "^20",
"@types/node-cron": "^3.0.11",
"@types/react": "^18",
"@types/react-dom": "^18",
"@types/winbox": "^0.2.5",
"@typescript-eslint/parser": "^7.0.2",
"autoprefixer": "^10.0.1",
"eslint": "^8",
"eslint-config-next": "14.0.4",
"nodemon": "^3.0.3",
"postcss": "^8",
"prettier": "^3.2.5",
"tailwindcss": "^3.3.0",
"typescript": "^5"
}
}