This repository has been archived by the owner on Feb 5, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.51 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": "WatchYourFaces",
"version": "0.0.1",
"repository": "https://github.com/pwillmann/fog-computing",
"author": "Patrick Willmann <[email protected]>",
"private": true,
"scripts": {
"setup": "sh ./scripts/setup.sh",
"deploy": "sh ./scripts/deploy.sh",
"offline": "sh ./scripts/offline.sh",
"remove": "sh ./scripts/remove.sh",
"lint": "eslint --ext .js",
"lint-fix": "eslint --ext .js --fix",
"precommit": "lint-staged"
},
"devDependencies": {
"eslint": "^4.19.1",
"eslint-config-prettier": "^2.9.0",
"eslint-friendly-formatter": "^4.0.1",
"eslint-plugin-prettier": "^2.6.0",
"husky": "^1.0.0-rc.8",
"lint-staged": "^7.1.3",
"prettier": "^1.13.7",
"prettier-eslint": "^8.8.1",
"serverless-domain-manager": "^2.4.0",
"serverless-dynamodb-local": "^0.2.30",
"serverless-offline": "^3.25.5",
"serverless-plugin-optimize": "^3.1.1-rc.1",
"serverless-s3-local": "^0.3.8",
"serverless-s3-sync": "^1.6.0"
},
"dependencies": {
"axios": "^0.18.0",
"global": "^4.3.2",
"joi": "^13.4.0",
"js-sha512": "^0.7.1",
"jsonwebtoken": "^8.2.1",
"node": "10.6.0",
"serverless": "1.27.3",
"serverless-dynamodb-autoscaling": "^0.6.2",
"serverless-plugin-existing-s3": "^2.2.1",
"serverless-plugin-split-stacks": "^1.5.5",
"vandium": "^4.8.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"eslint --fix",
"git add"
]
}
}