-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.11 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.11 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
{
"name": "compiler",
"version": "1.0.0",
"description": "This is compiler server",
"main": "src/server.ts",
"scripts": {
"start": "node dist/server.js",
"build": "rimraf dist && tsc --build",
"dev": "tsx watch src/server.ts"
},
"repository": "https://github.com/CEPP-2023-2024/Compiler.git",
"author": "UnixVextor <withun.wch@gmail.com>",
"license": "MIT",
"dependencies": {
"amqplib": "^0.10.4",
"axios": "^1.7.7",
"cors": "^2.8.5",
"dayjs": "^1.11.13",
"dotenv": "^16.4.1",
"express": "^4.18.2",
"helmet": "^7.1.0",
"jsonwebtoken": "^9.0.2",
"lexical-parser": "^1.0.0",
"pino": "^9.4.0",
"pino-pretty": "^11.2.2",
"redis": "^4.7.0",
"rimraf": "^5.0.5",
"strip-comments": "^2.0.1",
"tsx": "^4.7.0",
"typescript": "^5.3.3",
"zod": "^3.22.4"
},
"devDependencies": {
"@types/redis": "^4.0.11",
"@types/amqplib": "^0.10.5",
"@types/axios": "^0.14.0",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/jsonwebtoken": "^9.0.7",
"@types/pino": "^7.0.5",
"@types/strip-comments": "^2.0.4"
}
}