-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.16 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.16 KB
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
51
52
53
{
"name": "dev-environment",
"version": "1.0.0",
"description": "dev environment",
"type": "module",
"bin": {
"ech": "bin/index.js"
},
"types": "dist/types/cli.d.ts",
"scripts": {
"format": "ts-standard --fix",
"lint": "ts-standard --fix --verbose | snazzy",
"prettier": "prettierx -w .",
"build": "tsc",
"dev": "rm -rf ./dist && tsc -w",
"preStart": "tsc",
"prestart": "npm install && tsc",
"start": "npm link"
},
"keywords": [],
"author": "meakle",
"license": "MIT",
"devDependencies": {
"@commitlint/cli": "^16.0.0",
"@commitlint/config-conventional": "^16.0.0",
"@types/inquirer": "^8.1.3",
"chokidar": "^3.5.3",
"husky": "^7.0.4",
"prettierX": "^0.19.0",
"snazzy": "^9.0.0",
"ts-node-dev": "^1.1.8",
"ts-standard": "^11.0.0",
"typescript": "^4.6.0-dev.20220123"
},
"engines": {
"node": ">=14.17.4"
},
"dependencies": {
"art-template": "^4.13.2",
"chalk": "^5.0.0",
"commander": "^8.3.0",
"inquirer": "^8.2.0",
"ora": "^6.0.1"
},
"ts-standard": {
"ignore": [
"dist",
"built-in-template",
".vscode",
".husky"
]
}
}