-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.01 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.01 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
{
"name": "@rio-cloud/create-frontend",
"version": "2.0.0",
"description": "A CLI for creating new web frontend projects from scratch",
"author": {
"name": "TB Digital Services GmbH",
"email": "roland.hummel@rio.cloud"
},
"type": "module",
"private": true,
"scripts": {
"lint": "biome check",
"lint-fix": "biome check --write",
"format-code": "biome format --write"
},
"bin": {
"create-frontend": "./index.js"
},
"dependencies": {
"@inquirer/prompts": "8.3.0",
"boxen": "8.0.1",
"chalk": "5.6.2",
"cpy": "13.2.1",
"gradient-string": "3.0.0",
"isomorphic-git": "1.37.2",
"listr2": "10.1.1",
"move-file": "4.1.0",
"replace-in-file": "8.4.0",
"rimraf": "6.1.3",
"zx": "8.8.5"
},
"files": [
"index.js",
"src"
],
"devDependencies": {
"@biomejs/biome": "2.4.4",
"@rio-cloud/biome-config": "1.2.0"
}
}