-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.14 KB
/
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
39
40
{
"name": "server",
"version": "1.0.0",
"description": "",
"main": "build/app.js",
"scripts": {
"tsc": "node -v && npm -v && tsc -v && tsc",
"watch-ts": "tsc -w",
"watch-node": "nodemon dist/app.js",
"backend": "docker-compose up -d && concurrently -k -p \"[{name}]\" -n \"TypeScript, Node\" -c \"yello.bold, cyan.bold\" \"yarn run watch-ts\" \"yarn run watch-node\""
},
"author": "",
"license": "ISC",
"dependencies": {
"@hapi/joi": "^16.1.8",
"@overnightjs/core": "^1.6.9",
"@overnightjs/logger": "^1.1.9",
"@types/bcrypt": "^3.0.0",
"@types/body-parser": "^1.17.1",
"@types/cors": "^2.8.6",
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.2",
"@types/joi": "^14.3.4",
"@types/jsonwebtoken": "^8.3.5",
"@types/mongodb": "^3.3.11",
"@types/mongoose": "^5.5.32",
"@types/multer": "^1.3.10",
"aws-sdk": "^2.586.0",
"bcrypt": "^3.0.7",
"concurrently": "^5.0.0",
"config": "^3.2.4",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"jsonwebtoken": "^8.5.1",
"mongoose": "^5.7.13",
"multer": "^1.4.2",
"nodemon": "^2.0.1",
"typescript": "^3.7.3"
}
}