forked from nirvanush/whale-alerts-twitter-bot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.97 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": "serverless-boilerplate-express-typescript",
"version": "1.0.0",
"description": "Serverless framework ExpressJS TypeScript",
"scripts": {
"dev": "cross-env NODE_ENV=development sls offline start --stage offline",
"tail-log": "sls logs -f app -t --stage prod",
"deploy-prod": "cross-env NODE_ENV=production sls deploy --stage prod",
"remove-prod": "sls remove --stage prod",
"clean": "rimraf dist .webpack .serverless",
"lint": "eslint --ext .js,.ts .",
"build-types": "tsc --noEmit --pretty",
"test": "jest --watch",
"prepare": "husky install"
},
"dependencies": {
"@coinbarn/ergo-ts": "^0.3.0",
"express": "^4.18.1",
"helmet": "^5.1.0",
"memoizee": "^0.4.15",
"node-fetch": "^3.2.6",
"serverless-http": "^3.0.1",
"twitter-api-v2": "^1.12.3"
},
"devDependencies": {
"@commitlint/cli": "^16.3.0",
"@commitlint/config-conventional": "^16.2.4",
"@types/express": "^4.17.13",
"@types/jest": "^28.1.0",
"@types/memoizee": "^0.4.8",
"@types/supertest": "^2.0.12",
"@typescript-eslint/eslint-plugin": "^5.27.0",
"@typescript-eslint/parser": "^5.27.0",
"cross-env": "^7.0.3",
"eslint": "^8.16.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^26.4.6",
"eslint-plugin-jest-formatting": "^3.1.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"eslint-plugin-unused-imports": "^2.0.0",
"husky": "^7.0.4",
"jest": "^28.1.0",
"lint-staged": "^12.5.0",
"prettier": "^2.6.2",
"rimraf": "^3.0.2",
"serverless": "^3.19.0",
"serverless-bundle": "^5.3.0",
"serverless-dotenv-plugin": "^4.0.1",
"serverless-offline": "^8.8.0",
"supertest": "^6.2.3",
"ts-jest": "^28.0.4",
"typescript": "^4.7.2"
},
"author": "Ixartz (https://github.com/ixartz)"
}