forked from CodeSnap-ORG/Editor-Compiler
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.1 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.1 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
{
"name": "my-server-app",
"version": "1.0.0",
"description": "A Node.js server with cloud features",
"main": "src/server.js",
"scripts": {
"start": "node src/server.js",
"test": "jest",
"check": "tsc"
},
"author": "GarboMuffin",
"license": "MIT",
"private": true,
"dependencies": {
"adm-zip": "^0.5.10",
"axios": "^1.6.7",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"express": "^4.18.4",
"express-rate-limit": "^7.0.0",
"finalhandler": "^2.1.0",
"multer": "^1.4.5-lts.1",
"pg": "^8.11.0",
"serve-static": "^2.2.0",
"uuid": "^9.0.1",
"winston": "^3.17.0",
"winston-daily-rotate-file": "^5.0.0",
"ws": "^8.18.2",
"@octokit/rest": "^20.0.0",
"nodemailer": "^6.9.8",
"puppeteer": "^22.8.0"
},
"devDependencies": {
"@types/finalhandler": "^1.1.0",
"@types/jest": "^26.0.19",
"@types/node": "^14.14.14",
"@types/serve-static": "^1.15.7",
"@types/ws": "^8.18.1",
"jest": "^29.7.0",
"typescript": "^4.1.5"
},
"optionalDependencies": {
"bufferutil": "^4.0.9",
"utf-8-validate": "^6.0.5"
}
}