-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
58 lines (58 loc) · 2.07 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
{
"name": "reddit-bot-amos",
"version": "2.3.0",
"description": "Triggers whenever Amos Yee is mentioned",
"main": "handler.js",
"scripts": {
"env": "npx @siliconjungles/rn-scripts replace_files path=env/${ENV}/.cfg.${ENV}",
"_index": "node -r dotenv/config dist/index.js",
"_start": "serverless offline start",
"migrate": "yarn env && tsc && node -r dotenv/config dist/migrations/${FILE}.js",
"index": "ENV=${ENV:-local} yarn env && tsc && yarn _index",
"start": "ENV=${ENV:-local} yarn env && tsc && yarn _start",
"encrypt": "npx cryptfile encrypt_all cfg=.cryptfile.cfg pw=${PW}",
"decrypt": "npx cryptfile decrypt_all cfg=.cryptfile.cfg pw=${PW}",
"deploy_aws": "yarn env && tsc && serverless deploy",
"remove_aws": "yarn env && serverless remove",
"test": "jest --setupFiles dotenv/config",
"test_coverage": "yarn test --collectCoverage",
"lint": "eslint . --ext .ts",
"lint_fix": "yarn lint --fix",
"compile": "tsc && yarn lint"
},
"author": "aelesia",
"license": "MIT",
"devDependencies": {
"@siliconjungles/rn-scripts": "^0.0.0-42",
"@types/aws-lambda": "^8.10.39",
"@types/express": "^4.17.2",
"@types/faker": "^4.1.12",
"@types/jest": "^24.0.25",
"@types/node": "^13.1.2",
"@typescript-eslint/eslint-plugin": "^2.14.0",
"@typescript-eslint/parser": "^2.15.0",
"cryptfile": "^1.0.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.9.0",
"eslint-plugin-prettier": "^3.1.2",
"faker": "^4.1.0",
"jest": "^24.9.0",
"prettier": "^1.19.1",
"serverless": "^1.59.3",
"serverless-dotenv-plugin": "^2.1.1",
"serverless-offline": "^5.12.1",
"serverless-plugin-include-dependencies": "^4.0.0",
"ts-jest": "^24.2.0",
"typescript": "^3.9.6"
},
"dependencies": {
"@aelesia/commons": "^0.5.0-next.40",
"@aelesia/commons-ext": "^0.4.0-next.11",
"@aelesia/http": "^0.1.6",
"aws-sdk": "^2.528.0",
"dotenv": "^8.2.0",
"mixpanel": "^0.11.0",
"reddit-ts": "^1.1.0"
},
"repository": "https://github.com/aelesia/reddit-bot-amos"
}