-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 3.01 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 3.01 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
{
"name": "@deployment/deploymentScript",
"main": "./entrypoint/programmaticAPI",
"version": "2.3.21",
"scripts": {
"upgrade": "echo '• Upgrading also workspaces'; yarn workspaces run upgrade",
"postinstall": "yarn workspaces run install --force # always install workspaces, even as a when this module is used as a dependency # important: must be registered on post install, as some package rely on scriptManager binary during installation",
"buildAndRelease": "yarn run scriptManager shouldCompileScript=true ./ \".buildAndRelease.moduleProject({})\"",
"build": "yarn run scriptManager shouldCompileScript=true ./ \".buildSourceCode.moduleProject({}, {compile:[/**'./test'*/]})\"",
"runNeo4jContainer": "yarn run scriptManager shouldCompileScript=true ./ \".container.neo4j.runDockerContainer()\"",
"runMemgraphContainer": "yarn run scriptManager shouldCompileScript=true ./ \".container.memgraph.runDockerContainer()\"",
"runPortainerContainer": "yarn run scriptManager shouldCompileScript=true ./ \".container.portainer.runDockerContainer()\"",
"runSwarmpitContainer": "yarn run scriptManager shouldCompileScript=true ./ \".container.swarmpit.runDockerContainer()\""
},
"workspaces": [
"./packageManager/*"
],
"private": true,
"dependencies": {
"@dependency/entity": "https://github.com/AppScriptIO/entity#semver:^2.x.x",
"@dependency/graphTraversal": "https://github.com/AppScriptIO/graphTraversal#semver:^4.x.x",
"@dependency/graphTraversal-implementation": "https://github.com/AppScriptIO/graphTraversal-implementation#semver:^4.x.x",
"@dependency/handleFilesystemOperation": "https://github.com/AppScriptIO/handleFilesystemOperation#semver:^2.x.x",
"@dependency/handleProcess": "https://github.com/AppScriptIO/handleProcess#semver:^1.x.x",
"@deployment/buildTool": "https://github.com/AppScriptIO/buildTool#semver:^2.x.x",
"@deployment/javascriptTestRunner": "https://github.com/AppScriptIO/javascriptTestRunner#semver:^2.x.x",
"@deployment/nodejsLiveReload": "https://github.com/AppScriptIO/nodejsLiveReload#semver:^2.x.x",
"apollo-cache-inmemory": "*",
"apollo-client": "*",
"apollo-link": "*",
"apollo-link-error": "*",
"apollo-link-http": "*",
"dockerfile-generator": "^3.3.0",
"dockerode": "^3.0.2",
"fs-extra": "*",
"git-url-parse": "^*",
"graphql": "*",
"graphql-tag": "*",
"is-port-reachable": "^3.0.0",
"js-yaml": "^3.13.1",
"jsonfile": "*",
"lodash": "*",
"mkdirp": "^1.0.3",
"neo4j-driver": "^1.7.5",
"nested-object-assign": "*",
"node-fetch": "*",
"node-ssh": "*",
"param-case": "^3.0.3",
"parse-gitignore": "*",
"semver": "*",
"shelljs": "^0.8.3",
"uuid": "^3.3.2",
"write-json-file": "*"
},
"devDependencies": {
"@deployment/javascriptStaticAnalysis": "https://github.com/AppScriptIO/javascriptStaticAnalysis#semver:^2.x.x",
"@deployment/javascriptTranspilation": "https://github.com/AppScriptIO/javascriptTranspilation#semver:^2.x.x",
"@deployment/scriptManager": "https://github.com/AppScriptIO/scriptManager#semver:^2.x.x",
"typescript": "^3.3.3333"
}
}