-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
129 lines (129 loc) · 3.06 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
{
"name": "api",
"version": "1.0.0",
"description": "",
"main": "index.js",
"type": "module",
"scripts": {
"format": "prettier --write ./**/*.ts",
"lint:fix": "eslint --fix ./**/*.ts -f mo",
"lint": "eslint ./**/*.ts -f mo",
"test": "jest --passWithNoTests",
"build": "node --loader ts-node/esm -r dotenv/config src/scripts/build.ts",
"prepare": "husky install"
},
"author": "",
"license": "ISC",
"dependencies": {
"@google-cloud/translate": "^6.3.1",
"@googlemaps/google-maps-services-js": "^3.3.11",
"@types/lodash": "^4.14.180",
"axios": "^0.26.1",
"bad-words": "^3.0.4",
"esbuild": "^0.14.28",
"execa": "^6.1.0",
"glob": "^7.2.0",
"lambda-log": "^3.1.0",
"lodash": "^4.17.21",
"moment": "^2.29.1",
"twilio": "^3.74.0"
},
"devDependencies": {
"@commitlint/cli": "^16.2.1",
"@commitlint/config-conventional": "^16.2.1",
"@commitlint/types": "^16.2.1",
"@types/aws-lambda": "^8.10.92",
"@types/glob": "^7.2.0",
"@types/lambda-log": "^2.2.1",
"@types/mailparser": "^3.4.0",
"@types/node": "^17.0.19",
"@types/pdf-parse": "^1.1.1",
"@typescript-eslint/eslint-plugin": "^5.12.1",
"@typescript-eslint/parser": "^5.12.1",
"commitizen": "^4.2.4",
"cz-conventional-changelog": "^3.3.0",
"dotenv": "^16.0.0",
"eslint": "^8.9.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^16.1.0",
"eslint-config-prettier": "^8.4.0",
"eslint-formatter-mo": "^1.1.1",
"eslint-plugin-import": "^2.25.4",
"husky": "^7.0.4",
"jest": "^27.5.1",
"lint-staged": "^12.3.4",
"prettier": "^2.5.1",
"pretty-quick": "^3.1.3",
"ts-node": "^10.7.0",
"typescript": "^4.5.5"
},
"prettier": {
"singleQuote": true,
"trailingComma": "all",
"bracketSpacing": true,
"tabWidth": 2,
"useTabs": false,
"semi": true
},
"eslintConfig": {
"root": true,
"parser": "@typescript-eslint/parser",
"plugins": [
"@typescript-eslint"
],
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/eslint-recommended",
"plugin:@typescript-eslint/recommended",
"airbnb-base",
"airbnb-typescript/base"
],
"parserOptions": {
"ecmaVersion": 12,
"sourceType": "module",
"project": "./tsconfig.json"
},
"env": {
"node": true
},
"overrides": [
{
"files": [
"**/*.spec.ts"
],
"env": {
"jest": true
}
},
{
"files": [
"**/scripts/*.ts"
],
"rules": {
"no-console": "off"
}
}
],
"rules": {
"import/prefer-default-export": "off",
"no-underscore-dangle": "off",
"operator-linebreak": "off"
}
},
"lint-staged": {
"**/*.ts": [
"pretty-quick",
"eslint --cache --fix -f mo"
]
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
}
}