-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 773 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 773 Bytes
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
{
"name": "code-exec-api",
"version": "1.0.0",
"main": "server.ts",
"author": "Nrittik Sarmah <nrittik43@gmail.com>",
"license": "MIT",
"scripts": {
"start": "NODE_PATH=./build node build/server.js",
"build": "tsc -p .",
"dev": "nodemon --legacy-watch src/server.ts"
},
"devDependencies": {
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.17",
"@types/node": "^20.1.5",
"@types/uuid": "^9.0.1",
"nodemon": "^2.0.22",
"ts-node": "^10.9.1",
"typescript": "^5.0.4",
"yarn": "^1.22.19"
},
"dependencies": {
"axios": "^1.4.0",
"body-parser": "^1.20.2",
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"mongoose": "^7.1.1",
"path": "^0.12.7",
"uuid": "^9.0.0"
}
}