-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 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
41
42
{
"name": "barbers-hill-video-server",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"postinstall": "npm run build",
"start": "node dist/server.js",
"start-watch": "nodemon dist/server.js",
"build": "tsc",
"tsc-watch": "tsc-watch --onSuccess \"node ./dist/server.js\"",
"test": "echo \"Error: no test specified\" && exit 1",
"deploy": "git add . && git commit -m 'HEROKU' && git push heroku main && heroku logs --tail"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@jest-mock/express": "^1.4.5",
"@types/express": "^4.17.13",
"@types/jest": "^27.0.3",
"@types/lodash": "^4.14.178",
"@types/node": "^17.0.0",
"jest": "^27.4.5",
"nodemon": "^2.0.15",
"ts-jest": "^27.1.2",
"tslint": "^5.20.1",
"typescript": "^4.7.2"
},
"dependencies": {
"@types/cors": "^2.8.12",
"@types/multer": "^1.4.7",
"cors": "^2.8.5",
"express": "^4.17.2",
"lodash": "^4.17.21",
"mongodb": "^4.3.0",
"multer": "^1.4.4",
"multer-gridfs-storage": "^5.0.2",
"patch-package": "^6.4.7",
"tsc-watch": "^5.0.3"
}
}