-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.87 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.87 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
54
55
56
57
58
59
60
61
62
63
64
{
"name": "utils",
"version": "1.0.1",
"description": "Utilities for doing various annoying tasks",
"repository": "https://github.com/Xenfo/utils.git",
"author": "Samuel Corsi-House <chouse.samuel@gmail.com>",
"license": "MIT",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"postinstall": "is-ci || husky install",
"build": "yarn workspaces foreach -v run build",
"lint": "yarn workspaces foreach -v run lint",
"test": "yarn workspaces foreach -v run test",
"format": "prettier -w .",
"update": "node scripts/updateDeps.js",
"commit": "cz",
"r:tsc": "cd $INIT_CWD && tsc",
"r:eslint": "cd $INIT_CWD && eslint",
"r:prettier": "cd $INIT_CWD && prettier",
"r:jest": "cd $INIT_CWD && jest"
},
"resolutions": {
"minimist": "^1.2.6"
},
"devDependencies": {
"@babel/core": "^7.17.10",
"@commitlint/cli": "^16.3.0",
"@commitlint/config-conventional": "^16.2.4",
"@commitlint/cz-commitlint": "^16.3.0",
"@trivago/prettier-plugin-sort-imports": "^3.2.0",
"@types/jest": "^27.5.1",
"@types/node": "^17.0.33",
"@typescript-eslint/eslint-plugin": "^5.23.0",
"@typescript-eslint/parser": "^5.23.0",
"commitizen": "^4.2.4",
"doctoc": "^2.2.0",
"eslint": "^8.15.0",
"eslint-config-marine": "^9.4.1",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-typescript": "^2.7.1",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.0.0",
"globby": "^13.1.1",
"husky": "^8.0.1",
"inquirer": "^8.2.4",
"is-ci": "^3.0.1",
"jest": "^28.1.0",
"lint-staged": "^12.4.1",
"npm-check-updates": "^12.5.11",
"ora": "^6.1.0",
"prettier": "^2.6.2",
"shelljs": "^0.8.5",
"typescript": "^4.6.4"
},
"config": {
"commitizen": {
"path": "@commitlint/cz-commitlint"
}
},
"packageManager": "yarn@3.2.1"
}