-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.11 KB
/
Copy pathpackage.json
File metadata and controls
39 lines (39 loc) · 1.11 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
{
"name": "api-rest",
"version": "1.3.0",
"description": "API REST User service",
"main": "app.js",
"scripts": {
"start": "nodemon app.js",
"start-linux": "export $(cat .env | xargs) && nodemon app.js",
"start-windows": "(for /F \"tokens=*\" %i in (.env) do set %i) && npm start",
"test": "jest",
"test-integration": "export $(cat .env | xargs) && jest -c jest.integration.config.js",
"build": "npm-run-all clean transpile",
"clean": "rimraf dist",
"transpile": "babel ./src --out-dir dist --copy-files"
},
"keywords": [],
"author": "Jose Antonio Z.A., Carlos N.A.",
"license": "ISC",
"dependencies": {
"axios": "^1.2.2",
"bcryptjs": "^2.4.3",
"body-parser": "^1.20.0",
"cors": "^2.8.5",
"crypto": "^1.0.1",
"express": "^4.17.3",
"jest": "^29.3.1",
"jest-extended": "^3.2.3",
"mongoose": "^6.8.0",
"mongoose-unique-validator": "^3.1.0",
"node-fetch": "^3.3.0",
"passport": "^0.6.0",
"supertest": "^6.3.3",
"swagger-ui-express": "^4.6.0"
},
"devDependencies": {
"jest-fetch-mock": "^3.0.3",
"nodemon": "^2.0.15"
}
}