-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 880 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 880 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
{
"name": "react-boilerplate-cli",
"version": "1.0.0",
"description": "CLI tool to bootstrap React projects with custom configurations",
"main": "index.js",
"type": "module",
"scripts": {
"start": "node src/index.js",
"dev": "node src/index.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"_moduleAliases": {
"@root": ".",
"@": "src",
"@utils": "src/utils",
"@constants": "src/constants",
"@cli": "src/cli"
},
"_moduleDirectories": [
"node_modules_custom"
],
"keywords": [],
"author": "Sogbesan Timilehin",
"license": "ISC",
"dependencies": {
"@clack/prompts": "^0.7.0",
"chalk": "^5.3.0",
"commander": "^11.1.0",
"execa": "^8.0.1",
"fs-extra": "^11.2.0",
"gradient-string": "^2.0.2",
"module-alias": "^2.2.3",
"ora": "^8.0.1",
"sort-package-json": "^2.6.0"
}
}