-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
30 lines (30 loc) · 967 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
{
"name": "@dustlight/serverless-fun-nodejs-example",
"version": "1.0.0",
"description": "Demo project for serverless-fun",
"private": true,
"dependencies": {
},
"engines": {
"node": ">=10.0.0"
},
"scripts": {
"dev": "set mode=development && tsc --build tsconfig.json && serverless offline start",
"build": "set mode=production && tsc --build tsconfig.json",
"package": "set mode=production && tsc --build tsconfig.json && serverless package",
"deploy": "set mode=production && tsc --build tsconfig.json && serverless deploy",
"remove": "serverless remove"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dustlight-cn/serverless-fun-nodejs-template.git"
},
"author": "Hansin1997",
"license": "MIT",
"devDependencies": {
"@dustlight/serverless-fun-offline": "0.0.3-alpha",
"@dustlight/serverless-fun": "0.0.3-alpha",
"typescript": "^4.3.5",
"@types/node": "^16.3.2"
}
}