-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
82 lines (82 loc) · 2.71 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
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
{
"name": "algurado.com.ph",
"version": "2.0.0",
"description": "NOI.PH's online judge",
"scripts": {
"build": "next build",
"start": "next start -- -p 10001",
"dev": "next dev -p 10000",
"dev:worker": "nodemon --watch 'src/**' --ext '*' --exec 'node --conditions=react-server -r ts-node/register ./src/worker/worker.ts'",
"storage:init": "node --conditions=react-server -r ts-node/register src/db/scripts/devtools.ts storage:init",
"db:reset": "node --conditions=react-server -r ts-node/register src/db/scripts/devtools.ts db:reset",
"db:recreate": "node --conditions=react-server -r ts-node/register src/db/scripts/devtools.ts db:recreate",
"db:migrate": "node --conditions=react-server -r ts-node/register src/db/scripts/devtools.ts db:migrate",
"db:seed": "node --conditions=react-server -r ts-node/register src/db/scripts/devtools.ts db:seed",
"db:sql": "docker exec -it hurado-postgres psql -U hurado",
"lint": "next lint",
"lint:fix": "next lint --fix && prettier src --write",
"format": "prettier src --write"
},
"repository": {
"type": "git",
"url": "git+https://github.com/noiph/hurado.git"
},
"keywords": [
"online-judge"
],
"author": "NOI.PH",
"license": "MIT",
"bugs": {
"url": "https://github.com/noiph/hurado/issues"
},
"homepage": "https://github.com/noiph/hurado#readme",
"dependencies": {
"@azure/storage-blob": "^12.24.0",
"@monaco-editor/react": "^4.6.0",
"@types/bcryptjs": "^2.4.6",
"@unified-latex/unified-latex": "^1.7.1",
"aws-sdk": "^2.1673.0",
"axios": "^1.6.8",
"bcryptjs": "^2.4.3",
"boxicons": "^2.1.4",
"bullmq": "^5.12.9",
"classnames": "^2.5.1",
"cookies-next": "^4.1.1",
"dotenv": "^16.4.5",
"ioredis": "^5.4.1",
"jsonwebtoken": "^9.0.2",
"katex": "^0.16.11",
"kysely": "^0.27.3",
"next": "^14.1.3",
"overlayscrollbars-react": "^0.5.6",
"pg": "^8.11.5",
"pg-query-stream": "^4.5.3",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-toastify": "^10.0.5",
"sharp": "^0.33.2",
"zod": "^3.23.8"
},
"devDependencies": {
"@eslint/js": "^9.9.0",
"@types/eslint__js": "^8.42.3",
"@types/jsonwebtoken": "^9.0.6",
"@types/katex": "^0.16.7",
"@types/node": "20.11.24",
"@types/pg": "^8.11.6",
"@types/react": "^18.2.61",
"autoprefixer": "^10.4.20",
"eslint": "^8.57.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-next": "14.1.4",
"eslint-config-prettier": "^9.1.0",
"nodemon": "^3.1.4",
"postcss": "^8.4.41",
"prettier": "^3.2.5",
"server-only": "^0.0.1",
"tailwindcss": "^3.4.9",
"ts-node": "^10.9.2",
"typescript": "^5.5.4",
"typescript-eslint": "^8.0.1"
}
}