-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.45 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
{
"name": "whatsapp-fact-check",
"version": "1.0.0",
"description": "Bot de busca de Fake News",
"main": "index.js",
"engines": {
"yarn": "1.x"
},
"scripts": {
"build": "check-node-version --node \">= 12\" && rimraf ./build && tsc",
"test": "check-node-version --node \">= 12\" && jest",
"debug": "check-node-version --node \">= 12\" && nodemon --inspect src/index.ts",
"start": "node build/index.js",
"lint": "check-node-version --node \">= 12\" && eslint \"*/**/*.{js,ts}\" --quiet --fix",
"prettier-format": "prettier --config .prettierrc \"src/**/*.ts\" --write"
},
"author": "",
"license": "ISC",
"dependencies": {
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.6",
"@types/node": "^14.0.5",
"axios": "^0.19.2",
"body-parser": "^1.19.0",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"serialize-error": "^7.0.1",
"serialize-javascript": "^4.0.0",
"tslib": "^2.0.0",
"twilio": "^3.44.0",
"typescript": "^3.9.3",
"xml2js": "^0.4.23"
},
"devDependencies": {
"@types/jest": "^25.2.3",
"@typescript-eslint/eslint-plugin": "^3.0.2",
"@typescript-eslint/parser": "^3.0.2",
"check-node-version": "^4.0.3",
"eslint": "^7.1.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.3",
"jest": "^26.0.1",
"nodemon": "^2.0.4",
"prettier": "^2.0.5",
"rimraf": "^3.0.2",
"ts-jest": "^26.0.0",
"ts-node": "^8.10.2"
}
}