-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 853 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 853 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": "nodelizr-api",
"version": "1.0.0",
"description": " Nodelizr API for managing and serving Node.js applications",
"main": "src/config/server.js",
"author": "Bruno Lira & Paulo de Araujo",
"license": "MIT",
"type": "module",
"scripts": {
"dev": "node --loader ts-node/esm src/config/server.ts",
"build": "tsc",
"start": "node src/config/server.js"
},
"dependencies": {
"@vercel/node": "^2.3.0",
"apicache": "^1.6.3",
"archiver": "^5.3.1",
"cors": "^2.8.5",
"express": "^4.18.2",
"node-fetch": "^3.3.2"
},
"devDependencies": {
"@types/apicache": "^1.6.7",
"@types/archiver": "^5.1.2",
"@types/cors": "^2.8.13",
"@types/express": "^4.17.21",
"@types/node": "^20.5.9",
"@types/node-fetch": "^2.6.12",
"ts-node-dev": "^2.0.0",
"typescript": "^5.4.0"
}
}