-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.51 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.51 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
{
"name": "cma-cli",
"version": "1.1.0",
"description": "A CLI tool to scaffold a modern MERN stack application with a single command.",
"main": "bin/index.js",
"type": "module",
"bin": {
"cma-cli": "bin/index.js"
},
"scripts": {
"test": "vitest --run tests/",
"test:watch": "vitest tests/",
"test:coverage": "vitest --coverage tests/",
"test:ui": "vitest --ui tests/",
"format": "prettier --write .",
"format:check": "prettier --check .",
"clean": "node scripts/clean.js",
"i-all": "node scripts/install-all.js",
"i-root": "node scripts/install-all.js --root"
},
"files": [
"bin",
"templates"
],
"keywords": [
"mern",
"cli",
"cma-cli",
"create-mern-app",
"create-mern-app-cli",
"scaffold",
"generator",
"starter",
"react",
"node",
"express",
"mongodb",
"typescript",
"javascript"
],
"author": "Prasoon Kumar and Prantor Das",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/prasoonk1204/cma-cli.git"
},
"bugs": {
"url": "https://github.com/prasoonk1204/cma-cli/issues"
},
"homepage": "https://github.com/prasoonk1204/cma-cli#readme",
"dependencies": {
"chalk": "^5.6.2",
"execa": "^9.6.0",
"figlet": "^1.9.3",
"fs-extra": "^11.3.2",
"inquirer": "^12.10.0"
},
"devDependencies": {
"@vitest/coverage-v8": "^3.2.4",
"@vitest/ui": "^3.2.4",
"prettier": "^3.6.2",
"supertest": "^7.1.4",
"vitest": "^3.2.4"
}
}