This repository was archived by the owner on Sep 15, 2022. It is now read-only.
generated from Web-BDE/gitflow
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.33 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.33 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
{
"name": "runner",
"version": "1.0.0",
"description": "This project was bootstrapped with Fastify-CLI.",
"main": "app.ts",
"directories": {
"test": "test"
},
"scripts": {
"test": "npm run build:ts && tsc -p test/tsconfig.json && tap --ts test/**/*.test.ts",
"start": "npm run build:ts && fastify start -l info dist/app.js",
"build:ts": "tsc",
"dev": "tsc && concurrently -k -p \"[{name}]\" -n \"TypeScript,App\" -c \"yellow.bold,cyan.bold\" \"tsc -w\" \"fastify start --ignore-watch=.ts$ -w -l info -P dist/app.js\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/Polycode-do/runner.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/Polycode-do/runner/issues"
},
"homepage": "https://github.com/Polycode-do/runner#readme",
"dependencies": {
"@fastify/autoload": "^4.0.1",
"@fastify/sensible": "^4.1.0",
"dockerode": "^3.3.1",
"fastify": "^3.29.0",
"fastify-cli": "^2.15.0",
"fastify-plugin": "^3.0.0",
"zod": "^3.15.1"
},
"devDependencies": {
"@types/dockerode": "^3.3.9",
"@types/node": "^17.0.8",
"@types/tap": "^15.0.5",
"concurrently": "^7.0.0",
"fastify-tsconfig": "^1.0.1",
"nodemon": "^2.0.15",
"tap": "^15.1.6",
"ts-node": "^10.4.0",
"typescript": "^4.5.4"
}
}