-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
82 lines (82 loc) · 3.12 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
{
"name": "series-notifier-serverless",
"description": "A facebook messenger bot that notifies you when you favorite series airs a new episode",
"version": "1.0.0",
"author": "Jaydeep Solanki <[email protected]> (https://jaydp.com)",
"bugs": {
"url": "https://github.com/jaydp17/series-notifier-serverless/issues"
},
"dependencies": {
"aws-xray-sdk-core": "2.2.0",
"axios": "0.18.0",
"bluebird": "3.5.3",
"date-fns": "1.30.1",
"debug": "3.1.0",
"lodash": "^4.17.11"
},
"devDependencies": {
"@babel/core": "^7.4.0",
"@babel/plugin-proposal-numeric-separator": "^7.2.0",
"@babel/plugin-proposal-object-rest-spread": "^7.4.0",
"@babel/preset-env": "^7.4.2",
"@babel/preset-typescript": "^7.3.3",
"@types/bluebird": "3.5.26",
"@types/debug": "0.0.30",
"@types/deep-freeze": "0.1.1",
"@types/faker": "^4.1.5",
"@types/jest": "23.3.13",
"@types/lodash": "4.14.123",
"@types/node": "10.14.3",
"aws-sdk": "2.427.0",
"babel-loader": "^8.0.5",
"babel-plugin-lodash": "^3.3.4",
"deep-freeze": "^0.0.1",
"faker": "^4.1.0",
"jest": "23.6.0",
"lodash-webpack-plugin": "0.11.5",
"prettier": "1.16.4",
"rimraf": "^2.6.3",
"serverless": "1.39.1",
"serverless-offline": "4.9.2",
"serverless-plugin-tracing": "2.0.0",
"serverless-webpack": "git+https://[email protected]/jaydp17/serverless-webpack.git#4979966",
"ts-jest": "23.10.5",
"ts-node": "8.0.3",
"tslint": "5.14.0",
"tslint-config-prettier": "1.18.0",
"tslint-microsoft-contrib": "6.1.0",
"typescript": "3.3.4000",
"webpack": "4.29.6",
"webpack-cli": "3.3.0"
},
"homepage": "https://github.com/jaydp17/series-notifier-serverless#readme",
"license": "UNLICENSED",
"repository": {
"type": "git",
"url": "git+https://github.com/jaydp17/series-notifier-serverless.git"
},
"scripts": {
"build": "rimraf build && webpack",
"deploy:all": "sls deploy --verbose",
"deploy:all:prod": "NODE_ENV=production yarn deploy:all --stage production",
"deploy:function": "sls deploy function -f",
"dev": "sls offline start --dontPrintOutput --noTimeout --port 5000",
"format": "prettier --write '**/*.{js,ts,json,yaml,yml,md}'",
"invoke": "sls invoke -p event.json --log -f",
"invoke:local": "sls invoke local -p event.json --log -f",
"lint": "tslint src/**/*.ts test/**/*.ts",
"logs:prod": "sls logs --tail -f",
"predeploy:all": "yarn build",
"predeploy:function": "yarn build",
"preinvoke:local": "yarn build",
"prettier:all": "prettier --write src/**/*.{js,ts} test/**/*.{js,ts} *.{ts,js,json}",
"tables:create": "npm run ts-run src/bin/create-tables.ts",
"tables:delete": "npm run ts-run src/bin/delete-tables.ts",
"test:api": "./shell-scripts/test-api.sh",
"test:coverage": "yarn test:unit --coverage",
"test:unit": "NODE_ENV=test jest --config=jest.config.js --no-cache '^((?!(api\\.test\\.(ts|js))).)*$'",
"ts-run": "./shell-scripts/ts-run.sh",
"type-check": "tsc --noEmit",
"webpack:stats": "rimraf build && NODE_ENV=production webpack -p --profile --json > webpack-stats.json"
}
}