generated from vivid-lapin/ibm-cloud-functions-typescript-rollup
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
32 lines (32 loc) · 939 Bytes
/
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
{
"name": "ibm-cloud-functions-typescript",
"version": "1.0.0",
"description": "Template for IBM Cloud Functions with TypeScript and webpack.",
"author": "ci7lus <7887955+ci7lus@users.noreply.github.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/vivid-lapin/ibm-cloud-functions-typescript-template.git"
},
"scripts": {
"deploy": "ibmcloud fn deploy --manifest manifest.yaml",
"build": "webpack --color",
"lint": "prettier --check './src/**/*.{js,ts,tsx}'",
"format": "prettier --write './src/**/*.{js,ts,tsx}'"
},
"devDependencies": {
"@types/node": "^16",
"esbuild": "^0.14.38",
"esbuild-loader": "^2.18.0",
"prettier": "^2.6.2",
"ts-node": "^10.7.0",
"typescript": "^4.6.4",
"webpack": "^5.72.0",
"webpack-cli": "^4.9.2"
},
"dependencies": {
"axios": "^0.27.2",
"openwhisk": "^3.21.6",
"zod": "^3.15.1"
}
}