forked from Be-FaaS/BeFaaS-framework
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.36 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
{
"name": "experiments",
"private": true,
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "prettier-standard --lint && terraform fmt -recursive -check infrastructure",
"format": "prettier-standard --format",
"local": "node -e \"http.createServer(require(process.argv[1]).googleHandler).listen(3000)\"",
"build": "./scripts/build.sh",
"deploy": "./scripts/deploy.sh",
"destroy": "./scripts/destroy.sh",
"logs": "./scripts/logs.sh",
"workload": "./scripts/workload.sh",
"analysis": "./scripts/analysis.sh"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"**/*": "prettier-standard --lint",
"infrastructure/**/*.tf": "./scripts/terraform-fmt.sh"
},
"author": "",
"license": "Apache-2.0",
"dependencies": {
"@befaas/lib": "^8.24.3",
"@koa/multer": "3.0.0",
"@google-cloud/pubsub": "^3.5.0",
"@azure/eventgrid": "^4.11.0",
"card-validator": "^8.1.1",
"jimp": "^0.22.7",
"lodash": "^4.17.21",
"multer": "1.4.2"
},
"devDependencies": {
"@vercel/ncc": "^0.36.1",
"artillery": "^2.0.0-31",
"chalk": "^4.1.2",
"chalk-cli": "^4.1.0",
"husky": "^8.0.3",
"libnpmconfig": "^1.2.1",
"lint-staged": "^13.2.1",
"pacote": "^15.1.2",
"prettier-standard": "^16.4.1",
"standard": "^17.0.0"
}
}