-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
56 lines (56 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
{
"name": "suspicious-serverless",
"version": "1.0.0",
"description": "Serverless based suspicious content analysis service",
"main": "index.js",
"scripts": {
"test": "mocha -r ts-node/register -t 20000 --exit src/**/__test__/**/*.ts",
"lint": "tslint -c tslint.json 'src/**/*.ts'",
"deploy": "env PUPPETEER_SKIP_CHROMIUM_DOWNLOAD=1 serverless deploy --verbose --aws-s3-accelerate",
"deploy:stage": "npm run deploy -- -s stage",
"deploy:prod": "npm run deploy -- -s prod",
"info:stage": "sls info -s stage",
"info:prod": "sls info -s prod"
},
"engines": {
"node": "6.17.*"
},
"author": "MooYeol Lee <[email protected]>",
"license": "ISC",
"devDependencies": {
"@types/bluebird": "3.5.27",
"@types/chai": "4.2.3",
"@types/debug": "4.1.5",
"@types/linkify-it": "2.1.0",
"@types/lodash": "4.14.141",
"@types/mocha": "5.2.7",
"@types/nock": "10.0.3",
"@types/node": "8.10.54",
"@types/puppeteer": "1.20.1",
"@types/request": "2.48.3",
"@types/sinon": "7.5.0",
"@vingle/serverless-tag-plugin": "1.1.2",
"chai": "4.2.0",
"mocha": "6.2.1",
"nock": "10.0.6",
"serverless": "1.53.0",
"serverless-prune-plugin": "1.4.1",
"serverless-webpack": "5.3.1",
"sinon": "7.5.0",
"ts-loader": "6.2.0",
"ts-node": "8.4.1",
"tslint": "5.20.0",
"typescript": "3.6.3",
"webpack": "4.41.0"
},
"dependencies": {
"@serverless-chrome/lambda": "^1.0.0-55",
"bluebird": "^3.5.4",
"debug": "^4.1.1",
"linkify-it": "^2.1.0",
"lodash": "^4.17.11",
"puppeteer": "~1.20.0",
"request": "^2.88.0",
"vingle-corgi": "^2.1.0"
}
}