-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
35 lines (35 loc) · 1.04 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
{
"name": "serverless-workshop",
"version": "1.0.0",
"description": "Hands-on AWS serverless workshop for beginners",
"workspaces": [
"packages/*"
],
"directories": {
"doc": "docs"
},
"scripts": {
"install:frontend": "cd packages/lab5/frontend && npm install",
"start": "docsify serve ./docs",
"test:all": "npm run test --workspaces",
"projen:all": "npm run projen --workspaces",
"synth:all": "npm run synth --workspaces",
"lint:all": "npm run eslint --workspaces",
"upgrade:all": "npm-check-updates --deep -u && npm install && npm run install:frontend && npm run projen:all"
},
"repository": {
"type": "git",
"url": "git+https://github.com/superluminar-io/serverless-workshop.git"
},
"keywords": [],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/superluminar-io/serverless-workshop/issues"
},
"homepage": "https://github.com/superluminar-io/serverless-workshop#readme",
"devDependencies": {
"docsify-cli": "^4.4.4",
"npm-check-updates": "^16.6.2"
}
}