-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 771 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 771 Bytes
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
{
"name": "ts-projects",
"version": "1.0.2",
"description": "TypesScript Projects Template Generator",
"main": "index.js",
"scripts": {
"build": "tsc",
"start": "ts-node src/index.ts",
"init": "./dist/index.js"
},
"bin": {
"ts-projects-init": "./dist/index.js"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@types/download": "^8.0.1",
"@types/ejs": "^3.0.7",
"@types/inquirer": "^7.3.3",
"@types/node": "^16.4.12",
"@types/rimraf": "^3.0.1",
"nodemon": "^2.0.12",
"shx": "^0.3.3",
"ts-node": "^10.1.0",
"tsconfig-paths": "^3.10.1",
"typescript": "^4.3.5"
},
"dependencies": {
"download": "^8.0.0",
"ejs": "^3.1.6",
"inquirer": "^8.1.2",
"rimraf": "^3.0.2"
}
}