-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 2.75 KB
/
Copy pathpackage.json
File metadata and controls
90 lines (90 loc) · 2.75 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "@liquid-labs/catalyst-content-api",
"version": "1.0.0-prototype.1",
"description": "Catalyst model definition for 'content' and related resources.",
"files": [
"dist/",
"go/",
"app.yaml",
"go.mod",
"go.sum",
".catalyst"
],
"scripts": {
"build": "catalyst-scripts build",
"prepare": "npm run build",
"pretest": "TEST_TYPES=unit catalyst-scripts pretest",
"test": "TEST_TYPES=unit catalyst-scripts test",
"postversion": "git push && git push --tags",
"lint": "catalyst-scripts lint",
"lint-fix": "catalyst-scripts lint-fix",
"watch": "catalyst-scripts watch",
"postyalc": "chmod a+x ~/.yalc/packages/@liquid-labs/catalyst-core-api/*/bin/*"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Liquid-Labs/catalyst-content-api.git"
},
"author": "Zane Rockenbaugh <zane@liquid-labs.com>",
"license": "ISC",
"bugs": {
"url": "https://github.com/Liquid-Labs/catalyst-content-api/issues"
},
"homepage": "https://github.com/Liquid-Labs/catalyst-content-api#readme",
"devDependencies": {
"@liquid-labs/catalyst-content-model": "^1.0.0-prototype.0",
"@liquid-labs/catalyst-core-api": "^1.0.0-prototype.11",
"@liquid-labs/catalyst-persons-api": "^1.0.0-prototype.6",
"@liquid-labs/catalyst-scripts": "^1.0.0-alpha.22",
"@liquid-labs/regex-repo": "^1.0.0-alpha.3",
"@liquid-labs/restful-paths": "^1.0.0-prototype.2",
"lodash.omit": "^4.5.0",
"lodash.reduce": "^4.6.0",
"moment-timezone": "^0.5.25",
"normalizr": "^3.3.0",
"redux": "^4.0.1",
"redux-thunk": "^2.3.0",
"squirrelly": "^7.1.1"
},
"peerDependencies": {
"@liquid-labs/catalyst-content-model": "^1.0.0-prototype.0",
"@liquid-labs/catalyst-core-api": "^1.0.0-prototype.11",
"@liquid-labs/catalyst-persons-api": "^1.0.0-prototype.6",
"@liquid-labs/regex-repo": "^1.0.0-alpha.3",
"@liquid-labs/restful-paths": "^1.0.0-prototype.2",
"lodash.omit": "^4.5.0",
"lodash.reduce": "^4.6.0",
"moment-timezone": "^0.5.25",
"normalizr": "^3.3.0",
"redux": "^4.0.1",
"redux-thunk": "^2.3.0"
},
"dependencies": {},
"_catalystRequiresService": [
{
"iface": "sql-mysql",
"params-req": [],
"params-opt": [],
"config-const": []
},
{
"iface": "rest",
"params-req": [
"CLOUDSQL_INSTANCE_NAME",
"CLOUDSQL_CONNECTION_PROT",
"CLOUDSQL_CONNECTION_NAME",
"CLOUDSQL_CREDS",
"CLOUDSQL_DB",
"CLOUDSQL_USER",
"CLOUDSQL_PASSWORD",
"GCP_PROJECT_ID",
"FIREBASE_DB_URL",
"FIREBASE_CREDS_FILE"
],
"params-opt": [],
"config-const": {
"ADD_GO_APP_CONTENT": "@liquid-labs/catalyst-content-api:go/app.yaml"
}
}
]
}