-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.35 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.35 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
{
"name": "@ackee/create-node-app",
"version": "2.1.1",
"description": "",
"main": "index.js",
"type": "module",
"scripts": {
"build": "tsc",
"prettier:check": "prettier --ignore-path .gitignore --check '**/*.{ts,js,json,jsonc,md}'",
"prettier:fix": "pnpm run prettier:check --write '**/*.{ts,js,json,jsonc,md}'",
"lint:check": "eslint --ignore-path .gitignore 'src/**/*.ts' -f codeframe",
"lint:fix": "pnpm run lint:check --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/AckeeCZ/create-node-app.git"
},
"engines": {
"node": ">=20.19.0"
},
"devEngines": {
"packageManager": {
"name": "pnpm"
}
},
"bin": {
"create-node-app": "bin/create-node-app.js"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/AckeeCZ/create-node-app/issues"
},
"homepage": "https://github.com/AckeeCZ/create-node-app#readme",
"devDependencies": {
"@ackee/styleguide-backend-config": "^1.0.1",
"@types/lodash-es": "^4.17.12",
"@types/node": "^20.19.0",
"@types/yargs": "^17.0.33",
"prettier": "^3.0.0"
},
"dependencies": {
"fast-glob": "^3.3.3",
"inquirer": "^12.9.0",
"lodash-es": "^4.17.21",
"ora": "^8.2.0",
"source-map-support": "^0.5.21",
"typescript": "^5.4.5",
"yargs": "^18.0.0"
},
"packageManager": "pnpm@10.33.0"
}