-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) 路 1.64 KB
/
Copy pathpackage.json
File metadata and controls
73 lines (73 loc) 路 1.64 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
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "vail",
"version": "1.0.3",
"description": "Docker powered local development experience for JavaScript/TypeScript Apps.",
"license": "MIT",
"author": "arifszn",
"repository": {
"type": "git",
"url": "https://github.com/arifszn/vail.git"
},
"bugs": {
"url": "https://github.com/arifszn/vail/issues"
},
"type": "module",
"bin": {
"vail": "./src/index.mjs"
},
"scripts": {
"lint": "eslint --ext .js,.jsx,.mjs .",
"lint:fix": "eslint --ext .js,.jsx,.mjs --fix .",
"prettier": "prettier --check './**/*.{js,jsx,mjs,ts,tsx,css,md,json}'",
"prettier:fix": "prettier --write './**/*.{js,jsx,mjs,ts,tsx,css,md,json}'"
},
"files": [
"src",
"runtimes",
"stubs"
],
"dependencies": {
"child_process": "^1.0.2",
"inquirer": "^9.2.14",
"js-yaml": "^4.1.0"
},
"devDependencies": {
"eslint": "^8.46.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.0.0",
"prettier": "^3.0.1"
},
"keywords": [
"docker",
"dockerize",
"javascript",
"typescript",
"development environment",
"vail",
"laravel sail",
"npm",
"yarn",
"docker-compose",
"node.js",
"web development",
"backend",
"devops",
"containerization",
"microservices",
"node modules",
"package management",
"application setup",
"development tools",
"coding environment",
"dockerfile",
"docker image",
"docker container",
"node package",
"node application",
"typescript development",
"javascript development",
"docker development",
"docker deployment",
"docker orchestration"
]
}