-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
63 lines (63 loc) · 1.64 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
{
"name": "api-maintenance",
"version": "2.2.0",
"description": "Newtelco Maintenance API",
"main": "index.js",
"scripts": {
"start": "PORT=4100 GOOGLE_APPLICATION_CREDENTIALS=serviceacct.json node server.js",
"dev": "PORT=4100 GOOGLE_APPLICATION_CREDENTIALS=serviceacct.json nodemon server.js",
"prepare": "husky install"
},
"author": "Nico Domino <[email protected]>",
"license": "MIT",
"dependencies": {
"@google-cloud/translate": "^6.1.0",
"@meltwater/fetch-favicon": "^1.0.4",
"@sentry/node": "^6.2.5",
"algoliasearch": "^4.8.6",
"base64-js": "^1.5.1",
"body-parser": "^1.19.0",
"connect-timeout": "^1.9.0",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"encode-utf8": "^1.0.3",
"express": "^4.17.1",
"gmail-api-parse-message": "^2.1.2",
"google-batch": "0.0.8",
"google-oauth-jwt": "^0.2.0",
"googleapis": "^70.0.0",
"js-base64": "^3.6.0",
"mysql": "github:mysqljs/mysql",
"node-fetch": "^2.6.1",
"sanitize-html-react": "^1.13.0"
},
"devDependencies": {
"@commitlint/cli": "^12.1.1",
"@commitlint/config-conventional": "^12.1.1",
"eslint": "^7.23.0",
"husky": "^6.0.0",
"lint-staged": "^10.5.4",
"nodemon": "^2.0.7",
"prettier": "^2.2.1"
},
"prettier": {
"singleQuote": true,
"trailingComma": "es5",
"semi": false,
"jsxSingleQuote": true,
"arrowParens": "avoid",
"tabWidth": 2,
"useTabs": false
},
"lint-staged": {
"*.{js,jsx,json}": [
"prettier --write"
],
"*.{js,css,md}": "prettier --write"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
}
}