-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
22 lines (22 loc) · 1.19 KB
/
Copy pathpackage.json
File metadata and controls
22 lines (22 loc) · 1.19 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{
"name": "tektonology",
"private": false,
"version": "1.0.0",
"scripts": {
"prepare": "git config core.hooksPath .githooks",
"build:stls": "node scripts/build-stls.mjs",
"start:print-proxy": "node services/print-proxy/index.js",
"start:studio-proxy": "node services/studio-proxy/index.js",
"start:printing-agent": "node services/printing-agent/index.js",
"start:accounting-agent": "node services/accounting-agent/index.js",
"test:print-proxy": "node --test services/print-proxy/proxy.test.js",
"test:studio-proxy": "node --test services/studio-proxy/proxy.test.js",
"test:printing-agent": "node --test services/printing-agent/print-job.test.js",
"test:accounting-agent": "node --test services/accounting-agent/bookkeeping.test.js",
"test:agent-bus": "node --test services/agent-bus/index.test.js",
"test": "npm run test:agent-bus && npm run test:printing-agent && npm run test:accounting-agent && npm run test:print-proxy && npm run test:studio-proxy",
"rotate-certs": "node services/print-proxy/rotate-certs.js",
"start:api": "node tektonology-api/index.js",
"dev": "docker compose up --build api & cd tektonology-spa && npm run dev"
}
}