This repository was archived by the owner on Apr 9, 2021. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.42 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.42 KB
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
{
"name": "kdc-cms",
"version": "0.1.0",
"description": "Serverless Headless CMS",
"scripts": {
"start:admin": "yarn workspace kdc-cms-admin start",
"start:api": "yarn workspace kdc-cms-api start",
"start:ddb": "yarn workspace kdc-cms-resource-database ddb:start",
"start": "yarn start:ddb && concurrently --kill-others-on-fail \"yarn start:api\" \"yarn start:admin\"",
"setup": "./scripts/setup.sh",
"delete": "./scripts/delete.sh",
"stop:ddb": "yarn workspace kdc-cms-resource-database ddb:stop",
"deploy:admin": "./scripts/deploy-admin.sh",
"deploy:api": "./scripts/deploy-api.sh",
"deploy:func": "yarn workspace kdc-cms-api deploy:func",
"test:admin": "yarn workspace kdc-cms-admin cypress",
"test:api": "yarn workspace kdc-cms-api test"
},
"author": {
"name": "Ian Dela Cruz",
"email": "ian@kdcsoftware.com",
"url": "https://www.kdcsoftware.com"
},
"license": "MIT",
"private": true,
"devDependencies": {
"cz-conventional-changelog": "^3.0.2"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"workspaces": [
"packages/*",
"resources/*"
],
"dependencies": {
"concurrently": "^4.1.2"
},
"keywords": [
"CMS",
"headless",
"serverless",
"aws",
"cheap",
"kdc",
"software",
"nodejs",
"react",
"gatsby",
"monorepo",
"lambda",
"dynamodb"
]
}