-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.29 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
43
44
45
46
{
"name": "",
"version": "1.0.0",
"description": "learning project of Dushkin Dmitro",
"main": "index.js",
"scripts": {
"start": "node ./task-manager/src/index.js",
"mongodb": "/home/lom/mongodb/bin/mongod --dbpath=/home/lom/mongodb-data",
"dev": "env-cmd -f ./task-manager/config/dev.env nodemon ./task-manager/src/index.js -e js,hbs,css",
"test": "env-cmd -f ./task-manager/config/test.env jest --coverage --runInBand --detectOpenHandles"
},
"jest": {
"testEnvironment": "node"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lomkovsky/nodejs-start-project.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/lomkovsky/nodejs-start-project/issues"
},
"homepage": "https://github.com/lomkovsky/nodejs-start-project#readme",
"dependencies": {
"@sendgrid/mail": "^6.4.0",
"bcryptjs": "^2.4.3",
"chalk": "^2.4.2",
"express": "^4.17.1",
"hbs": "^4.0.4",
"jsonwebtoken": "^8.5.1",
"mongodb": "^3.3.0",
"mongoose": "^5.6.10",
"multer": "^1.4.2",
"request": "^2.88.0",
"sharp": "^0.23.0",
"validator": "^11.1.0",
"yargs": "^13.3.0"
},
"devDependencies": {
"env-cmd": "^10.0.1",
"jest": "^24.9.0",
"nodemon": "^1.19.1",
"supertest": "^4.0.2"
}
}