-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
84 lines (84 loc) · 2.11 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
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
82
83
84
{
"name": "create-node-template",
"description": "Create node.js or express boilerplate with one command",
"author": "AndyOooh",
"version": "0.1.27",
"exports": "./src/index.js",
"type": "module",
"engines": {
"node": ">=16.7.0"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/AndyOooh/create-node-template.git"
},
"bin": {
"create-node-template": "dist/src/index.js"
},
"files": [
"dist/",
"README.md",
"package.json"
],
"keywords": [
"node",
"node.js",
"typescript",
"express",
"boilerplate",
"template",
"generator",
"project",
"setup",
"cli",
"rest",
"api",
"mongodb",
"mongoose",
"es6",
"jest",
"docker",
"passport",
"joi",
"eslint",
"prettier"
],
"scripts": {
"build": "tsc && tsc-alias",
"build:watch": "tsc --watch & tsc-alias --watch",
"clean-templates": "./clean-templates.sh",
"copy-templates": "cp -r templates dist/",
"lint": "bunx eslint . --ignore-pattern 'templates'",
"lint:all": "bunx eslint .",
"lint:fix": "bunx eslint . --fix --ignore-pattern 'templates'",
"lint:fix-all": "bunx eslint . --fix",
"publish:patch": "bun run build && bun run copy-templates && npm version patch && npm publish --registry=https://registry.npmjs.org/",
"start": "node dist/src/index.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"devDependencies": {
"@types/inquirer": "^9.0.7",
"@types/node": "^20.11.27",
"@types/prompts": "^2.4.9",
"@types/update-notifier": "^6.0.8",
"@types/validate-npm-package-name": "^4.0.2",
"commander": "^12.0.0",
"conf": "^12.0.0",
"eslint": "^8.57.0",
"picocolors": "^1.0.0",
"prompts": "^2.4.2",
"simple-update-notifier": "^2.0.0",
"tsc-alias": "^1.8.8",
"typescript": "^5.4.2",
"typescript-eslint": "^7.3.1",
"update-check": "^1.5.4",
"update-notifier": "^7.0.0",
"validate-npm-package-name": "^5.0.0"
},
"dependencies": {
"@inquirer/checkbox": "^2.2.0",
"chalk": "^5.3.0",
"inquirer": "^9.2.16"
}
}