forked from ks888/LambStatus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 1.6 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
{
"name": "lamb-status",
"version": "0.4.3",
"description": "Serverless Status Pages",
"repository": {
"type": "git",
"url": "https://github.com/ks888/LambStatus.git"
},
"scripts": {
"cloudformation:create": "cloudformation/bin/stack.sh create",
"cloudformation:update": "cloudformation/bin/stack.sh update",
"cloudformation:delete": "cloudformation/bin/stack.sh delete",
"cloudformation:release": "cloudformation/bin/release.sh",
"lambda:install": "cd packages/lambda && npm install",
"lambda:clean": "cd packages/lambda && npm run clean",
"lambda:build": "cd packages/lambda && npm run build",
"lambda:deploy": "cd packages/lambda && npm run deploy",
"lambda:release": "cd packages/lambda && npm run release",
"frontend:install": "cd packages/frontend && npm install",
"frontend:clean": "cd packages/frontend && npm run clean",
"frontend:build": "cd packages/frontend && npm run build",
"frontend:deploy": "cd packages/frontend && npm run deploy",
"frontend:release": "cd packages/frontend && npm run release",
"frontend:start": "cd packages/frontend && npm run start",
"install": "npm run lambda:install && npm run frontend:install",
"clean": "npm run lambda:clean && npm run frontend:clean",
"build": "npm run lambda:build && npm run frontend:build",
"deploy": "npm run lambda:deploy && npm run frontend:deploy",
"release": "npm run cloudformation:release && npm run lambda:release && npm run frontend:release",
"start": "npm run frontend:start"
},
"author": "Kishin Yagami <[email protected]>",
"license": "Apache-2.0"
}