-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 953 Bytes
/
package.json
File metadata and controls
41 lines (41 loc) · 953 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
35
36
37
38
39
40
41
{
"name": "template-create",
"author": "Jaroslaw",
"version": "1.0.0",
"description": "",
"scripts": {
"start": "ts-node src/server.ts",
"build": "tsc && shx rm -rf dist/templates && shx cp -r src/templates dist"
},
"main": "./dist/server.js",
"bin": {
"mycli": "./dist/server.js"
},
"license": "ISC",
"dependencies": {
"chakl": "0.0.1-security",
"ejs": "^3.1.5",
"express": "^4.17.1",
"inquirer": "^7.3.3",
"module-alias": "^2.2.2",
"path": "^0.12.7",
"shelljs": "^0.8.4",
"yargs": "^16.1.0"
},
"devDependencies": {
"@types/chalk": "^2.2.0",
"@types/ejs": "^3.0.5",
"@types/express": "^4.17.8",
"@types/inquirer": "^7.3.1",
"@types/node": "^14.14.6",
"@types/shelljs": "^0.8.8",
"@types/yargs": "^15.0.9",
"nodemon": "^2.0.6",
"shx": "^0.3.3",
"ts-node": "^9.0.0",
"typescript": "^4.0.5"
},
"_moduleAliases": {
"@": "dist/"
}
}