-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
38 lines (38 loc) · 925 Bytes
/
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
{
"name": "desdecero",
"version": "1.0.0",
"description": "aprendiendo Nodejs",
"main": "public/app.js",
"scripts": {
"start": "node public/app.js",
"watch": "nodemon public/app.js --ignore __test__",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bogarin/desdeCero.git"
},
"author": "Jose Ramón Bogarin",
"license": "MIT",
"bugs": {
"url": "https://github.com/bogarin/desdeCero/issues"
},
"homepage": "https://github.com/bogarin/desdeCero#readme",
"dependencies": {
"bcrypt-nodejs": "0.0.3",
"body-parse": "^0.1.0",
"crypto": "^1.0.1",
"dotenv": "^8.0.0",
"express": "^4.17.1",
"jwt-simple": "^0.5.6",
"moment": "^2.24.0",
"mongoose": "^5.6.3"
},
"devDependencies": {
"factory-girl": "^5.0.4",
"faker": "^4.1.0",
"jest": "^24.8.0",
"nodemon": "^1.19.1",
"supertest": "^4.0.2"
}
}