-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
84 lines (84 loc) · 2.38 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
77
78
79
80
81
82
83
84
{
"name": "@anyesu/blog",
"version": "0.0.0",
"private": true,
"description": "https://anyesu.github.io",
"keywords": [
"blog",
"github"
],
"homepage": "https://anyesu.github.io",
"bugs": {
"url": "https://github.com/anyesu/blog/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/anyesu/blog"
},
"license": "MIT",
"author": "anyesu (https://github.com/anyesu)",
"type": "module",
"scripts": {
"postinstall": "simple-git-hooks",
"t": "tsx scripts/transform.ts",
"lint": "run-s -snc lint:*",
"lint-staged:eslint": "eslint --cache --ext .js,.cjs,.mjs,.ts,.cts,.mts --format=pretty",
"lint-staged:prettier": "prettier --write --ignore-unknown",
"lint:eslint": "npm run lint-staged:eslint -- .",
"lint:prettier": "prettier -c .",
"lint:tsc": "tsc --noEmit -p ."
},
"simple-git-hooks": {
"pre-commit": "npx --no-install lint-staged --concurrent false"
},
"lint-staged": {
"*": "npm run lint-staged:prettier",
"**/*.{c,m,}{js,ts}": "npm run lint-staged:eslint"
},
"devDependencies": {
"@ianvs/prettier-plugin-sort-imports": "4.1.0",
"@tsconfig/recommended": "1.0.3",
"@types/git-url-parse": "9.0.3",
"@types/jsonfile": "6.1.2",
"@types/node": "20.6.2",
"@types/prettier": "2.7.3",
"@types/qs": "6.9.15",
"@typescript-eslint/eslint-plugin": "6.7.2",
"@vue/eslint-config-prettier": "7.0.0",
"aws-sdk": "2.1608.0",
"axios": "1.6.0",
"cac": "6.7.14",
"chokidar": "3.5.3",
"consola": "3.2.3",
"crc": "4.3.2",
"dotenv-flow": "3.3.0",
"es-main": "1.3.0",
"eslint": "7.32.0",
"eslint-config-prettier": "9.0.0",
"eslint-formatter-pretty": "5.0.0",
"eslint-plugin-n": "16.1.0",
"eslint-plugin-regexp": "1.15.0",
"eslint-plugin-unicorn": "40.1.0",
"form-data": "4.0.0",
"get-uri": "6.0.1",
"git-url-parse": "13.1.1",
"globby": "13.2.2",
"jsonfile": "6.1.0",
"lint-staged": "14.0.1",
"log-update": "5.0.1",
"npm-run-all": "4.1.5",
"outdent": "0.8.0",
"prepare-write": "2.0.0-2",
"prettier": "2.8.8",
"prettier-plugin-organize-attributes": "0.0.5",
"prettier-plugin-packagejson": "2.3.0",
"prettier-plugin-sort-json": "2.0.0",
"qs": "6.12.1",
"simple-git-hooks": "2.9.0",
"tsx": "3.12.10",
"typescript": "4.6.4"
},
"engines": {
"node": "^14.18.0 || >=16.4.0"
}
}