-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
46 lines (46 loc) · 1.24 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
{
"name": "@uwblueprint/create-bp-app",
"version": "1.0.28",
"description": "Starter code generation CLI tool.",
"main": "index.js",
"bin": "bin/index.js",
"repository": "[email protected]:uwblueprint/starter-code-cli.git",
"author": "UW Blueprint Internal Tools",
"license": "MIT",
"scripts": {
"dev": "ts-node index.ts",
"lint": "eslint . --ext .ts",
"lint-fix": "eslint . --ext .ts --fix",
"build": "tsc -p .",
"prod": "yarn build && node bin/index.js"
},
"devDependencies": {
"@types/figlet": "^1.2.1",
"@types/inquirer": "^7.3.1",
"@types/node": "^14.14.31",
"@types/shelljs": "^0.8.8",
"@types/yargs": "^16.0.0",
"@typescript-eslint/eslint-plugin": "^4.15.2",
"@typescript-eslint/parser": "^4.15.2",
"eslint": "^7.20.0",
"eslint-config-airbnb-typescript": "^12.3.1",
"eslint-config-prettier": "^8.0.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prettier": "^3.3.1",
"prettier": "^2.2.1",
"ts-node": "^9.1.1",
"typescript": "^4.2.2"
},
"dependencies": {
"boxen": "^5.0.0",
"chalk": "^4.1.0",
"figlet": "^1.5.0",
"glob": "^7.1.6",
"inquirer": "^8.0.0",
"shelljs": "^0.8.4",
"yargs": "^16.2.0"
},
"files": [
"bin/"
]
}