-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
74 lines (74 loc) · 2.23 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "poc-covid-19",
"version": "0.0.1",
"description": "",
"main": "index.js",
"scripts": {
"build": "rimraf dist && babel src -s -D -d dist --presets env",
"start:production": "npm run build && node dist/main/server",
"start:dev": "nodemon -w src --exec babel-node src/main/server --presets env",
"lint": "eslint",
"lint:fix": "eslint --fix",
"test": "jest --colors --noStackTrace",
"test:unit": "npm run test -- --watch --passWithNoTests -c jest-unit-config.js",
"test:integration": "npm run test -- --watch --runInBand -c jest-integration-config.js",
"test:staged": "npm run test -- --silent --passWithNoTests",
"test:ci": "npm run test -- --coverage --passWithNoTests"
},
"repository": {
"type": "git",
"url": "git+https://github.com/LuizPiresS/poc-covid-19.git"
},
"author": "Luiz Pires <luiz.pires@compasso.com.br>",
"license": "ISC",
"bugs": {
"url": "https://github.com/LuizPiresS/poc-covid-19/issues"
},
"homepage": "https://github.com/LuizPiresS/poc-covid-19#readme",
"dependencies": {
"actions-on-google": "^2.13.0",
"axios": "^0.21.1",
"babel-cli": "^6.26.0",
"babel-preset-env": "^1.7.0",
"body-parser": "^1.19.0",
"config": "^3.3.3",
"dialogflow-fulfillment-helper": "^0.6.6",
"express": "^4.17.1",
"mongodb": "^3.6.3",
"mongoose": "^5.11.7",
"regenerator-runtime": "^0.13.7",
"rimraf": "^3.0.2"
},
"devDependencies": {
"@types/axios": "^0.14.0",
"@types/express": "^4.17.9",
"@types/mongodb": "^3.6.3",
"@types/mongoose": "^5.10.2",
"@types/supertest": "^2.0.10",
"eslint": "^7.14.0",
"eslint-config-standard": "^16.0.2",
"eslint-plugin-boundaries": "^1.1.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-import-helpers": "^1.1.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"git-commit-msg-linter": "^3.0.0",
"husky": "^4.3.7",
"jest": "^26.6.3",
"lint-staged": "^10.5.3",
"nodemon": "^2.0.6",
"supertest": "^6.0.1"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"pre-push": "npm run test:ci"
}
},
"lint-staged": {
"*.js": [
"npm run lint:fix",
"npm run test:staged"
]
}
}