forked from idvogados/idvogados-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.92 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
47
48
49
50
51
52
53
54
55
56
57
58
59
{
"name": "idvodagos-backend",
"version": "0.1.0",
"description": "Projeto Idvogados",
"main": "app.js",
"dependencies": {
"@b2wads/env-o-loader": "^1.0.2",
"@sendgrid/mail": "^7.1.1",
"express": "^4.17.0",
"express-async-wrap": "^1.0.0",
"firebase": "^7.14.5",
"http-status": "^1.4.2",
"pino": "^6.2.1"
},
"devDependencies": {
"acorn": "^7.1.1",
"chai": "^4.2.0",
"sinon": "^9.0.2",
"mocha": "^7.1.2",
"eslint": "6.2.2",
"eslint-config-airbnb": "18.0.1",
"eslint-config-prettier": "6.1.0",
"eslint-plugin-chai-friendly": "^0.4.1",
"eslint-plugin-import": "2.18.2",
"eslint-plugin-jsx-a11y": "6.2.3",
"eslint-plugin-no-unsafe-regex": "1.0.0",
"eslint-plugin-prettier": "3.1.0",
"eslint-plugin-react": "7.14.3",
"eslint-plugin-security": "1.4.0",
"eslint-plugin-you-dont-need-lodash-underscore": "6.6.0",
"nyc": "^14.1.1",
"prettier": "1.17.1",
"supertest": "4.0.2"
},
"scripts": {
"deps": "docker-compose -f docker-compose.test.yml up --force-recreate --renew-anon-volumes --remove-orphans",
"eslint": "eslint --fix .",
"eslint:check": "eslint .",
"style:fix": "npm run prettier && npm run eslint",
"style:check": "npm run prettier:check && npm run eslint:check",
"prettier": "prettier --write \"**/{*.js,*.json,bin/**}\"",
"prettier:check": "prettier --check \"**/{*.js,*.json,bin/**}\"",
"start": "node ./bin/www",
"start:docker": "docker-compose up --force-recreate --renew-anon-volumes --remove-orphans",
"debug": "node --inspect-brk ./bin/www",
"cli": "node --experimental-repl-await",
"test": "nyc mocha --reporter spec",
"test:acceptance": "npm t test/acceptance/*",
"test:unit": "npm t test/unit/*",
"coverage": "nyc --reporter=json mocha --reporter spec"
},
"repository": {
"type": "git",
"url": "github.com:idvogados/backend"
},
"keywords": [
"nodejs"
]
}