-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.68 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": "ngomongin-apa-sih",
"version": "1.0.0",
"description": "",
"main": "./dist/index.js",
"scripts": {
"prebuild": "rimraf dist",
"build": "npm run lint && tsc --project ./",
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint . --ext .ts",
"lint:fix": "eslint . --ext .ts --fix",
"start:dev": "npm run lint && nodemon --exec ts-node --files src/index.ts",
"start": "npm run build && node --unhandled-rejections=strict ./dist/index.js"
},
"author": "",
"license": "ISC",
"dependencies": {
"@google-cloud/language": "^4.3.2",
"@google-cloud/translate": "^6.3.1",
"axios": "^0.26.1",
"axios-oauth-client": "^1.4.4",
"axios-retry": "^3.2.4",
"axios-token-interceptor": "^0.2.0",
"dotenv": "^16.0.0",
"pino": "^7.6.5",
"pino-pretty": "^7.5.1",
"rimraf": "^3.0.2",
"stopword": "^2.0.1",
"text-cleaner": "^1.2.1",
"twitter-lite": "^1.1.0"
},
"devDependencies": {
"@types/node": "^17.0.21",
"@types/pino": "^7.0.5",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-no-secrets": "^0.8.9",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-security": "^1.4.0",
"eslint-plugin-sonarjs": "^0.12.0",
"eslint-plugin-unicorn": "^40.1.0",
"husky": "^7.0.4",
"lint-staged": "^12.3.3",
"nodemon": "^2.0.15",
"prettier": "2.6.0",
"typescript": "^4.6.2"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.ts": "eslint --cache --fix",
"*.{js,css,md}": "prettier --write"
}
}