-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 945 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 945 Bytes
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
{
"name": "docker-react",
"description": "Tooling to deploy React applications with docker containers.",
"main": "dist/index.js",
"type": "module",
"bin": {
"docker-react": "bin/docker-react.js"
},
"scripts": {
"build": "tsc",
"test": "echo \"Tests not yet implemented.\" && exit 0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/danielemery/docker-react.git"
},
"keywords": [
"docker",
"react"
],
"author": "Daniel Emery <danielremery@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/danielemery/docker-react/issues"
},
"homepage": "https://github.com/danielemery/docker-react#readme",
"devDependencies": {
"@danielemeryau/prettier-config": "^0.0.6",
"@types/node": "^24.12.0",
"typescript": "^6.0.2"
},
"dependencies": {
"commander": "^14.0.2",
"zod": "4.3.6"
},
"peerDependencies": {
"zod": "4.3.6"
}
}