-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1014 Bytes
/
package.json
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
{
"name": "ionic_waiter_server",
"version": "1.0.0",
"description": "",
"main": "./lib/server.ts",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"tsc": "tsc",
"build": "tsc",
"dev": "ts-node --exec ./lib/server.ts",
"start": "nodemon ./dist/server.js",
"prod": "npm run build && npm run start"
},
"author": "",
"license": "ISC",
"dependencies": {
"@types/express": "^4.17.6",
"@types/mongoose": "^5.7.24",
"@types/node": "^14.0.13",
"@types/nodemailer": "^6.4.0",
"@types/nodemailer-direct-transport": "^1.0.31",
"@types/nodemailer-smtp-transport": "^2.7.4",
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"express": "^4.17.1",
"mongoose": "^5.9.10",
"mysql2": "^2.1.0",
"nodemailer": "^6.4.8",
"nodemon": "^2.0.3",
"socket.io": "^2.3.0",
"ts-node": "^3.3.0",
"typescript": "^3.9.5"
},
"devDependencies": {
"@types/cors": "^2.8.6",
"@types/mysql2": "github:types/mysql2"
}
}