-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.92 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
51
52
53
54
55
56
57
58
59
60
{
"private": true,
"name": "nudx",
"version": "0.2.0",
"description": "A simple CLI to create development environments",
"repository": "https://github.com/harrysbaraini/nudx",
"author": "Vanderlei Sbaraini Amancio @harrysbaraini",
"license": "MIT",
"type": "module",
"workspaces": [
"packages/*"
],
"husky": {
"hooks": {
"pre-commit": "lerna run pre-commit"
}
},
"devDependencies": {
"@oclif/test": "^2.3.15",
"@trivago/prettier-plugin-sort-imports": "^4.1.1",
"@types/chai": "^4",
"@types/handlebars": "^4.1.0",
"@types/js-yaml": "^4.0.5",
"@types/mocha": "^9.0.0",
"@types/node": "^16.18.23",
"@typescript-eslint/eslint-plugin": "^5.59.0",
"@typescript-eslint/parser": "^5.59.0",
"chai": "^4",
"chokidar-cli": "^3.0.0",
"eslint": "^8.38.0",
"eslint-config-oclif": "^4",
"eslint-config-oclif-typescript": "^1.0.3",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-unicorn": "^47.0.0",
"eslint-plugin-unused-imports": "^2.0.0",
"husky": "^8.0.3",
"lerna": "^6.6.2",
"mocha": "^9",
"oclif": "^3",
"prettier": "^2.8.7",
"shx": "^0.3.3",
"tslib": "^2.5.0",
"typescript": "^4.9.5"
},
"scripts": {
"lint": "eslint --ext .ts --config .eslintrc",
"lint-fix": "eslint --ext .ts --config .eslintrc --fix",
"lint-all": "yarn lint .",
"lint-fix-all": "yarn lint-fix .",
"format": "prettier --config .prettierrc 'packages/*/src/**/*.ts' --write",
"watch-format": "chokidar 'packages/*/src/**/*.ts' -c 'prettier --write {path}'",
"test": "lerna run test",
"build": "lerna run build"
},
"dependencies": {
"@inquirer/prompts": "^2.1.1",
"@inquirer/type": "^1.1.0",
"listr2": "^6.6.0"
}
}