-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
40 lines (40 loc) · 972 Bytes
/
package.json
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
{
"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 <[email protected]>",
"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": "^16.0.0",
"typescript": "^4.5.4"
},
"dependencies": {
"commander": "^8.3.0",
"dotenv": "^10.0.0",
"joi": "^17.5.0"
},
"peerDependencies": {
"joi": "^17.5.0"
}
}