-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1.11 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
{
"name": "streaming-app-backend",
"version": "1.0.0",
"description": "Streaming App backend",
"main": "server.js",
"scripts": {
"test": "jest",
"build": "rimraf dist/ && babel ./ --out-dir dist/ --ignore ./node_modules,./.babelrc,./package.json,./npm-debug.log --copy-files",
"start": "npm run build && node dist/server.js",
"watch": "npm run build && nodemon dist/server.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ShanikaEdiriweera/streaming-app-backend"
},
"author": "Shanika Ediriweera",
"license": "ISC",
"homepage": "https://github.com/ShanikaEdiriweera/streaming-app-backend#readme",
"dependencies": {
"app-root-path": "^2.2.1",
"axios": "^0.19.0",
"babel-cli": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"bcrypt": "^3.0.6",
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"express": "^4.16.4",
"jsonwebtoken": "^8.5.1",
"lodash": "^4.17.15",
"moment": "^2.24.0",
"mongoose": "^5.5.7",
"morgan": "^1.9.1",
"rimraf": "^2.6.3",
"winston": "^3.2.1"
},
"devDependencies": {
"jest": "^24.9.0"
}
}