-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.17 KB
/
Copy pathpackage.json
File metadata and controls
81 lines (81 loc) · 2.17 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
74
75
76
77
78
79
80
81
{
"name": "create-enchilada",
"version": "1.3.0",
"type": "module",
"description": "CLI scaffold tool to create web app projects from templates: React, Vanilla JS, Node/Express and more.",
"main": "index.js",
"scripts": {
"lint": "eslint .",
"build": "rollup --config",
"dev": "rollup --config --watch",
"cov:clean": "rimraf .nyc_output && rimraf coverage",
"cov:unit": "NODE_OPTIONS=--experimental-vm-modules jest --forceExit --colors --detectOpenHandles -c jest.config.unit.js",
"test:unit": "npm-run-all cov:clean cov:unit; [ -t 1 ] && stty sane && tput cnorm || true",
"cov:e2e": "NODE_ENV=e2e NODE_OPTIONS=--experimental-vm-modules jest --forceExit --colors --detectOpenHandles --runInBand -c jest.config.e2e.js",
"test:e2e": "NODE_ENV=e2e npm-run-all cov:clean cov:e2e; [ -t 1 ] && stty sane && tput cnorm || true"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Sharmaz/create-enchilada.git"
},
"keywords": [
"cli",
"scaffold",
"boilerplate",
"starter",
"template",
"create-app",
"react",
"javascript",
"vanilla",
"typescript",
"vite",
"webpack",
"rspack",
"tailwindcss",
"eslint",
"jest",
"testing-library",
"sequelize",
"web",
"node",
"express"
],
"bin": {
"create-enchilada": "index.js"
},
"engines": {
"node": ">=20.19.0"
},
"files": [
"index.js",
"templates/*",
"dist"
],
"author": "Ivan Robles <contact@ivanrobles.pro>",
"license": "MIT",
"bugs": {
"url": "https://github.com/Sharmaz/create-enchilada/issues"
},
"homepage": "https://github.com/Sharmaz/create-enchilada#readme",
"devDependencies": {
"@eslint/js": "^10.0.0",
"@jest/globals": "^30.0.2",
"@rollup/plugin-commonjs": "^28.0.6",
"@rollup/plugin-node-resolve": "^16.0.1",
"cli-prompts-test": "^0.3.0",
"eslint": "^10.0.0",
"execa": "^9.2.0",
"globals": "^16.2.0",
"jest": "^30.0.2",
"npm-run-all": "^4.1.5",
"rimraf": "^6.0.1",
"rollup": "^4.44.0",
"rollup-plugin-esbuild": "^6.2.1"
},
"dependencies": {
"chalk": "^5.3.0",
"minimist": "^1.2.8",
"prompts": "^2.4.2"
}
}