-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 1.83 KB
/
Copy pathpackage.json
File metadata and controls
78 lines (78 loc) · 1.83 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
{
"name": "spoonfeed",
"version": "0.2.4",
"description": "NestJS project scaffolder with 112 composable recipes",
"author": "B.B. Jansen <bobjansen@pm.me>",
"license": "MIT",
"type": "module",
"bin": {
"spoonfeed": "./dist/index.js",
"create-spoonfeed": "./dist/index.js"
},
"generators": "./generators.json",
"repository": {
"type": "git",
"url": "git+https://github.com/bbjansen/spoonfeed.git"
},
"homepage": "https://github.com/bbjansen/spoonfeed#readme",
"bugs": {
"url": "https://github.com/bbjansen/spoonfeed/issues"
},
"keywords": [
"nestjs",
"scaffolder",
"cli",
"boilerplate",
"fastify",
"typescript",
"recipes",
"generator",
"nx"
],
"publishConfig": {
"access": "public"
},
"files": [
"dist",
"templates",
"generators.json",
"src/generators/*/schema.json",
"LICENSE"
],
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"test": "jest --selectProjects unit",
"test:unit": "jest --selectProjects unit",
"test:integration": "jest --selectProjects integration",
"test:e2e": "jest --selectProjects e2e",
"test:all": "jest",
"lint": "eslint \"src/**/*.ts\" \"tests/**/*.ts\" --fix",
"format": "prettier --write \"src/**/*.ts\" \"tests/**/*.ts\""
},
"engines": {
"node": ">=22.0.0",
"pnpm": ">=9.0.0"
},
"dependencies": {
"@clack/prompts": "1.3.0",
"@nx/devkit": "22.7.1",
"ejs": "5.0.2",
"execa": "9.6.1",
"fs-extra": "11.3.5",
"ts-morph": "28.0.0",
"zod": "4.4.3"
},
"devDependencies": {
"@swc/core": "1.15.24",
"@swc/jest": "0.2.39",
"@types/ejs": "3.1.5",
"@types/fs-extra": "11.0.4",
"@types/jest": "30.0.0",
"@types/node": "24.12.2",
"eslint": "9.39.4",
"jest": "30.3.0",
"prettier": "3.8.2",
"typescript": "5.9.3"
}
}