This repository has been archived by the owner on Jul 8, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 2.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
{
"name": "resize",
"version": "1.0.0",
"description": "Image Resizing Service",
"scripts": {
"start:offline": "sls offline",
"logs": "sls logs -f resize",
"logs:watch": "sls logs -f resize -t",
"deploy": "sls deploy",
"deploy:function": "sls deploy function -f resize",
"prettier:check": "prettier --check \"./*.ts\" \"./**/*.ts\"",
"prettier:write": "prettier --write \"./*.ts\" \"./**/*.ts\"",
"eslint:check": "eslint . --ext .ts",
"eslint:write": "eslint . --ext .ts --fix",
"lint": "npm run eslint:check && npm run prettier:check",
"format": "npm run eslint:write && npm run prettier:write"
},
"repository": {
"type": "git",
"url": "git+https://github.com/upframe/resize.git"
},
"license": "ISC",
"bugs": {
"url": "https://github.com/upframe/resize/issues"
},
"homepage": "https://github.com/upframe/resize#readme",
"devDependencies": {
"@babel/core": "^7.9.6",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/plugin-proposal-object-rest-spread": "^7.9.6",
"@babel/plugin-transform-runtime": "^7.9.6",
"@babel/preset-env": "^7.9.6",
"@babel/preset-typescript": "^7.9.0",
"@types/aws-lambda": "^8.10.64",
"@types/node": "^12.12.38",
"@types/sharp": "^0.23.1",
"@typescript-eslint/eslint-plugin": "^2.31.0",
"@typescript-eslint/parser": "^2.31.0",
"aws-sdk": "^2.672.0",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.1.0",
"babel-plugin-source-map-support": "^2.1.1",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.3",
"prettier": "^2.0.5",
"serverless": "^1.70.0",
"serverless-dotenv-plugin": "^2.4.2",
"serverless-offline": "^5.12.1",
"serverless-webpack": "^5.3.2",
"ts-loader": "^6.2.2",
"typescript": "^3.8.3",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.11",
"webpack-node-externals": "^1.7.2"
},
"dependencies": {
"@babel/runtime": "^7.9.6",
"axios": "^0.19.2",
"core-js": "^3.6.5",
"knex": "^0.20.15",
"pg": "^7.18.2",
"sharp": "^0.26.2",
"source-map-support": "^0.5.19"
}
}