-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.22 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
{
"name": "rmaafs-api",
"version": "1.0.0",
"description": "API para consultar datos de mi persona",
"main": "index.js",
"scripts": {
"test": "jest --passWithNoTests",
"start": "nodemon --exec node_modules/.bin/babel-node index.js",
"sintax:test": "prettier --check \"{,!(node_modules)/**/}*.js\"",
"sintax:fix": "prettier --check --write \"{,!(node_modules)/**/}*.js\"",
"lint": "eslint . --ext .js",
"check": "npm run sintax:test && npm run lint && npm run test",
"generate-docs": "node_modules/.bin/jsdoc --configure .jsdoc.json --verbose"
},
"author": "",
"license": "ISC",
"dependencies": {
"axios": "^0.21.4",
"check-files-exist": "^1.0.1",
"cors": "^2.8.5",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"firebase-admin": "^12.7.0",
"node-fetch": "^2.6.1"
},
"devDependencies": {
"@babel/cli": "^7.14.8",
"@babel/core": "^7.14.8",
"@babel/eslint-parser": "^7.14.7",
"@babel/node": "^7.14.7",
"@babel/preset-env": "^7.14.8",
"eslint": "^7.32.0",
"jest": "^27.0.6",
"jsdoc": "^3.6.4",
"jsdoc-baseline": "^0.1.5",
"nodemon": "^2.0.12",
"prettier": "^2.3.2"
},
"nodemonConfig": {
"ignore": [
"*.json"
]
}
}