-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·79 lines (79 loc) · 1.86 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
{
"name": "snugger",
"version": "1.1.3",
"description": "A CLI tool to create express+TypeScript API Projects.",
"type": "module",
"publishConfig": {
"registry": "https://npm.pkg.github.com"
},
"main": "./dist/index.js",
"bin": {
"snugger": "./bin/snugger.js"
},
"files": [
"dist",
"bin"
],
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint --config ./eslint.config.mjs ./",
"format": "prettier --write './**/*.{ts,js,json}'",
"start": "node ./dist/index.js",
"build": "tsc",
"dev": "nodemon --exec tsx src/index.ts",
"dev:watch": "tsx src/index.ts",
"prepare": "husky"
},
"lint-staged": {
"*.ts": [
"eslint --config ./eslint.config.mjs --fix",
"prettier --write"
]
},
"repository": {
"type": "git",
"url": "https://github.com/The-Finding-Labs/snugger.git"
},
"keywords": [
"CLI",
"TS",
"Express",
"API",
"backend-template"
],
"author": "Tuhin Bar",
"contributors": [
"Souvik Das (https://github.com/souvik-wizard)",
"Priyadarsi Halder (https://github.com/PriyoRaven)"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/The-Finding-Labs/snugger/issues"
},
"homepage": "https://github.com/The-Finding-Labs/snugger#readme",
"dependencies": {
"chalk": "^5.3.0",
"commander": "^12.1.0",
"fs-extra": "^11.2.0",
"inquirer": "^11.1.0",
"ora": "^8.1.0"
},
"devDependencies": {
"@eslint/js": "^9.11.1",
"@types/fs-extra": "^11.0.4",
"@types/node": "^22.7.4",
"eslint": "^9.13.0",
"globals": "^15.9.0",
"husky": "^9.1.6",
"jest": "^29.7.0",
"lint-staged": "^15.2.10",
"prettier": "^3.3.3",
"ts-node": "^10.9.2",
"tsx": "^4.19.1",
"typescript": "^5.6.3",
"typescript-eslint": "^8.8.0"
},
"engines": {
"node": ">=14.16.0"
}
}