This repository has been archived by the owner on Mar 8, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
76 lines (76 loc) · 1.73 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "@doras/cli",
"version": "0.3.0",
"description": "",
"bin": {
"dora": "dist/src/index.js"
},
"publishConfig": {
"access": "public"
},
"keywords": [],
"author": "",
"license": "ISC",
"engines": {
"node": ">= 10.13.0",
"npm": ">= 6.11.0"
},
"scripts": {
"dev": "tsc -w & tsc-alias -w",
"build": "tsc && tsc-alias",
"lint": "eslint src/**/*.ts --fix",
"clean": "rm -rf dist && rm -rf node_modules",
"test:ui": "npx majestic",
"test": "jest",
"release": "release-it"
},
"dependencies": {
"archiver": "^5.3.0",
"axios": "^0.21.1",
"chalk": "^4.1.0",
"commander": "^8.0.0",
"dayjs": "^1.10.5",
"form-data": "^4.0.0",
"fs-extra": "^10.0.0",
"inquirer": "^8.1.1",
"joi": "^17.4.0",
"node-ssh": "^11.1.1",
"ora": "^5.4.1",
"shelljs": "^0.8.4",
"simple-git": "^2.39.1"
},
"devDependencies": {
"@tsconfig/node12": "^1.0.8",
"@types/archiver": "^5.1.0",
"@types/fs-extra": "^9.0.11",
"@types/inquirer": "^7.3.2",
"@types/jest": "^26.0.23",
"@types/node": "^14.17.3",
"@typescript-eslint/eslint-plugin": "^4.26.1",
"@typescript-eslint/parser": "^4.26.1",
"eslint": "^7.28.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0",
"husky": "^6.0.0",
"jest": "^27.0.4",
"lint-staged": "^11.1.2",
"majestic": "^1.8.1",
"prettier": "^2.3.1",
"release-it": "^14.11.5",
"ts-jest": "^27.0.3",
"ts-node": "^10.0.0",
"tsc-alias": "^1.3.9",
"typescript": "^4.3.2"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.{jsx,ts,tsx}": [
"eslint --fix",
"prettier --write"
]
}
}