-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
75 lines (75 loc) · 2.15 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
75
{
"name": "caparledev-bot",
"version": "1.0.0",
"description": "Twitter bot for the hashtag #caparledev",
"main": "build/index.js",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/osscameroon/caparledev-bot.git"
},
"author": {
"email": "tericcabrel@yahoo.com",
"name": "Eric Cabrel TIOGO",
"url": "https://tericcabrel.com"
},
"private": false,
"scripts": {
"watch": "tsc -w",
"start": "nodemon ./build/index.js",
"prod": "node ./build/index.js",
"test": "NODE_ENV=test jest",
"ngrok": "ngrok http 7432",
"lint": "eslint --fix",
"bearer:token": "ts-node src/commands/bearerToken.ts",
"search:tweet": "node ./build/commands/searchTweetAndSave.js",
"loc": "git ls-files | grep -Ev '.lock|.example|.gitignore|.dockerignore|.eslintrc.js|.prettierrc.js|.md|.json' | xargs wc -l"
},
"dependencies": {
"cors": "^2.8.5",
"cron": "^1.8.2",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"lodash": "^4.17.21",
"mongoose": "^5.8.1",
"needle": "^2.6.0",
"prettier": "^2.2.1",
"request-promise": "^4.2.5",
"twitter": "^1.7.1",
"winston": "^3.3.3",
"winston-daily-rotate-file": "^4.5.0"
},
"devDependencies": {
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@types/cors": "^2.8.6",
"@types/cron": "^1.7.2",
"@types/express": "^4.17.2",
"@types/lodash": "^4.14.168",
"@types/mongoose": "^5.5.34",
"@types/needle": "^2.5.1",
"@types/node": "^12.12.17",
"@types/request-promise": "^4.1.45",
"@types/twitter": "^1.7.0",
"@typescript-eslint/eslint-plugin": "^3.7.1",
"@typescript-eslint/parser": "^3.7.1",
"axios": "^0.21.1",
"eslint": "^7.6.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-sort-destructure-keys": "^1.3.5",
"husky": "^4.3.6",
"jest": "^26.6.3",
"ngrok": "^3.4.0",
"nock": "^12.0.3",
"nodemon": "^1.19.1",
"ts-jest": "^26.5.1",
"ts-node": "^9.1.1",
"typescript": "^4.1.5"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
}
}