-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
47 lines (47 loc) · 1.17 KB
/
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
41
42
43
44
45
46
47
{
"name": "create-new-monorepo",
"version": "1.7.0",
"description": "A CLI for RAD (Rapid Application Development), helps you to start a Node.js Monorepo projects.",
"type": "module",
"keywords": [
"monorepo",
"RAD",
"starter",
"boilerplate",
"prototype",
"template",
"node",
"CLI",
"django",
"react",
"fastify"
],
"author": "Santiago Greco <[email protected]> (https://github.com/fsgreco)",
"repository": {
"type": "git",
"url": "git+https://github.com/fsgreco/create-new-monorepo.git"
},
"license": "MIT",
"bin": {
"create-new-monorepo": "./bin/init-monorepo.js"
},
"dependencies": {
"chalk": "^5.3.0",
"inquirer": "^9.1.5",
"ora": "^6.3.0"
},
"devDependencies": {
"@eslint/js": "^9.17.0",
"eslint": "^9.17.0",
"eslint-config-prettier": "^9.1.0",
"globals": "^15.14.0",
"lefthook": "^1.10.1",
"prettier": "^3.4.2"
},
"scripts": {
"postinstall": "if command -v lefthook > /dev/null 2>&1; then lefthook install; fi",
"normalize": "prettier --write '**/*.{js,ts,cjs,mjs,jsx,tsx}'",
"lint": "eslint . --fix",
"check": "npm run normalize && npm run lint"
}
}