-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.75 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
{
"name": "schema-data-loader",
"version": "0.0.0",
"packageManager": "[email protected]",
"private": true,
"scripts": {
"husky-install": "husky install",
"build": "preconstruct build",
"watch": "preconstruct watch --onSuccess='yarn workspace %pkg% yalc-push'",
"lint": "eslint --fix --ext js,ts,tsx packages/core/src",
"check-types": "tsc --project tsconfig.json",
"release": "yarn workspaces foreach run release",
"release-pkg": "yarn workspace @schema-data-loader/eslint-plugin run release",
"skip-ci": "git commit --allow-empty -m \"chore(root): [skip ci]\""
},
"workspaces": [
"packages/*"
],
"devDependencies": {
"@babel/core": "~7.23.0",
"@babel/plugin-proposal-class-properties": "~7.18.6",
"@babel/plugin-proposal-decorators": "~7.23.0",
"@babel/preset-typescript": "~7.23.0",
"@commitlint/cli": "~17.7.2",
"@commitlint/config-conventional": "~17.7.0",
"@commitlint/prompt-cli": "~17.7.2",
"@preconstruct/cli": "~2.8.1",
"@types/lodash": "~4.14.199",
"@types/node": "~20.8.4",
"@typescript-eslint/eslint-plugin": "~6.7.5",
"@typescript-eslint/parser": "~6.7.5",
"class-transformer": "~0.5.1",
"commit-and-tag-version": "11.2.3",
"eslint": "~8.51.0",
"eslint-config-prettier": "~9.0.0",
"eslint-plugin-unused-imports": "~3.0.0",
"husky": "~8.0.3",
"inversify": "~6.0.1",
"lint-staged": "~14.0.1",
"patch-package": "~8.0.0",
"prettier": "~3.0.3",
"reflect-metadata": "~0.1.13",
"typescript": "~5.2.2"
},
"preconstruct": {
"exports": {
"importConditionDefaultExport": "default"
},
"___experimentalFlags_WILL_CHANGE_IN_PATCH": {
"importsConditions": true
},
"packages": [
"packages/*"
]
}
}