-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.33 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
{
"name": "nd.ts",
"description": "generate bare minimum node typescript setup asap",
"version": "1.2.1",
"main": "./dist/index.js",
"bin": "./dist/index.js",
"types": "./dist/index.d.ts",
"author": "heyAyushh",
"bugs": {
"url": "https://github.com/heyAyushh/nd.ts/issues"
},
"files": [
"dist/"
],
"scripts": {
"build": "tsc",
"dev": "concurrently -k -p \"[{name}]\" -n \"TypeScript,Node\" -c \"cyan.bold,green.bold\" \"npm run watch:ts\" \"npm run serve-debug\"",
"lint": "eslint . --ext .ts",
"start": "node ./dist/index.js",
"serve-debug": "nodemon dist/index.js",
"test": "echo \"no tests exist\"",
"watch:ts": "tsc -w"
},
"dependencies": {
"chalk": "^5.3.0",
"figlet": "^1.7.0",
"inquirer": "^9.2.15",
"ora": "^8.0.1",
"rimraf": "^5.0.5"
},
"devDependencies": {
"@types/figlet": "^1.5.8",
"@types/inquirer": "^9.0.7",
"@types/node": "^20.11.24",
"@types/rimraf": "^3.0.2",
"@typescript-eslint/eslint-plugin": "^7.1.0",
"@typescript-eslint/parser": "^7.1.0",
"concurrently": "^8.2.2",
"eslint": "^8.57.0",
"nodemon": "^3.1.0",
"typescript": "^5.3.3"
},
"homepage": "https://github.com/heyAyushh/nd.ts#readme",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/heyAyushh/nd.ts.git"
}
}