-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1.05 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
{
"name": "@rheinklang/service",
"version": "0.1.0",
"description": "Rheinklang service",
"main": "index.js",
"scripts": {
"postinstall": "netlify-lambda install",
"prettier": "prettier --write \"**/*.{js,ts,json}\"",
"prebuild": "node ./bin/create-env.js",
"build": "npm-run-all build:*",
"build:tsc": "tsc",
"build:netlify": "netlify functions:build --functions ./lambda --src ./deploy/platform/functions",
"serve:netlify": "netlify dev --functions ./src/functions"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rheinklang/service.git"
},
"author": "Jan Biasi <biasijan@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/rheinklang/service/issues"
},
"homepage": "https://github.com/rheinklang/service#readme",
"dependencies": {
"netlify-lambda": "1.6.3"
},
"devDependencies": {
"@types/aws-lambda": "8.10.40",
"@types/node": "13.5.0",
"@types/node-fetch": "2.5.4",
"netlify-cli": "2.30.0",
"node-fetch": "2.6.0",
"npm-run-all": "4.1.5",
"prettier": "1.19.1",
"typescript": "3.7.5"
}
}