-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
50 lines (50 loc) · 1.41 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
{
"name": "@luvuong-le/node-project-generator",
"version": "1.0.2",
"description": "Project Generator created for convenient use",
"main": "index.js",
"bin": {
"generate": "dist/index.js",
"gen": "dist/index.js"
},
"scripts": {
"start": "npm run build && node dist/index.js",
"build": "tsc -p .",
"test": "jest --coverage --silent",
"test:watch": "jest --coverage --watch --silent"
},
"keywords": [],
"author": "Lu-Vuong Le <[email protected]>",
"license": "MIT",
"devDependencies": {
"@types/jest": "^24.0.15",
"@types/mock-fs": "^3.6.30",
"jest": "^24.8.0",
"mock-fs": "^4.10.1",
"nodemon": "^1.19.1",
"ts-jest": "^24.0.2",
"ts-node": "^8.2.0",
"typescript": "^3.5.1"
},
"dependencies": {
"@types/dotenv": "^6.1.1",
"@types/fs-extra": "^8.0.0",
"@types/inquirer": "^6.0.3",
"@types/lodash": "^4.14.136",
"@types/node": "^12.0.12",
"@types/shelljs": "^0.8.5",
"@types/yargs": "^13.0.0",
"chalk": "^2.4.2",
"dotenv": "^8.0.0",
"fs-extra": "^8.1.0",
"inquirer": "^6.3.1",
"lodash": "^4.17.15",
"module-alias": "^2.2.1",
"ora": "^3.4.0",
"shelljs": "^0.8.3",
"yargs": "^13.2.4"
},
"_moduleAliases": {
"@modules": "./dist"
}
}