-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.23 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.23 KB
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
{
"name": "ppl_login",
"version": "0.0.0",
"description": "",
"main": "app.js",
"scripts": {
"demo": "cross-env NODE_ENV=demo env-cmd .env nodemon server.js --config nodemon.json",
"dev": "cross-env NODE_ENV=development env-cmd .env nodemon server.js --config nodemon.json",
"test:m": "cross-env NODE_ENV=testing nyc --reporter=html mocha api/modulos/**/*.model.test.js --exit || true",
"test:c": "cross-env NODE_ENV=testing mocha api/modulos/**/*.controller.test.js --exit || true"
},
"repository": {
"type": "git",
"url": "git+https://github.com/espolPPLTeam/ppl_login.git"
},
"author": "@edisonmora95",
"license": "ISC",
"bugs": {
"url": "https://github.com/espolPPLTeam/ppl_login/issues"
},
"homepage": "https://github.com/espolPPLTeam/ppl_login#readme",
"dependencies": {
"bcrypt": "2.x.x",
"cross-env": "^5.2.0",
"env-cmd": "^8.0.2",
"fast-json-body": "^1.1.0",
"fastify": "^1.11.2",
"jsonwebtoken": "^8.3.0",
"moment": "^2.22.2",
"mongoose": "^5.2.14",
"shortid": "^2.2.13"
},
"devDependencies": {
"chai": "^4.1.2",
"mocha": "^5.2.0",
"nodemon": "^1.18.4",
"nyc": "^13.0.1"
},
"engines": {
"node": "8.12.0",
"npm": "6.4.1"
}
}