-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·32 lines (32 loc) · 920 Bytes
/
package.json
File metadata and controls
executable file
·32 lines (32 loc) · 920 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": "random-code-generator-server",
"version": "1.0.0",
"description": "Dynamic application creator server",
"main": "dist/server.js",
"scripts": {
"build": "tsc",
"dev": "ts-node src/server.ts",
"start": "nodemon",
"prod": "npm run build && npm run start"
},
"author": "Aldo Bernardes Maciel & Karine de Oliveira",
"license": "ISC",
"dependencies": {
"cors": "^2.8.5",
"http-status-codes": "^1.4.0",
"log4js": "^6.2.1",
"express": "^4.17.1",
"mongoose": "^5.9.15",
"tsc": "^1.20150623.0"
},
"devDependencies": {
"@types/cors": "^2.8.6",
"@types/express": "^4.17.6",
"@types/mongodb": "^3.5.18",
"@types/mongoose": "^5.7.21",
"@types/node": "^14.0.3",
"nodemon": "^2.0.4",
"ts-node": "^8.10.1",
"typescript": "^3.9.2"
}
}