-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 822 Bytes
/
Copy pathpackage.json
File metadata and controls
36 lines (36 loc) · 822 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
33
34
35
36
{
"name": "vidly",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "node index.js",
"dev": "npm-run-all --parallel dev:*",
"dev:client": "npm start --prefix client",
"dev:server": "nodemon index.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"bcrypt": "^3.0.7",
"config": "^1.29.4",
"cors": "^2.8.4",
"express": "^4.16.2",
"express-async-errors": "^2.1.0",
"fawn": "^2.1.5",
"joi": "^13.4.0",
"joi-objectid": "^2.0.0",
"jsonwebtoken": "^8.1.1",
"lodash": "^4.17.10",
"moment": "^2.20.1",
"mongoose": "^5.0.2",
"winston": "^2.4.0",
"winston-mongodb": "^3.0.0"
},
"devDependencies": {
"jest": "^24.9.0",
"npm-run-all": "^4.1.5",
"supertest": "^3.0.0"
}
}