-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 2.03 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
{
"name": "back-kit",
"version": "0.1.0",
"description": "",
"license": "SEE LICENSE IN LICENSE",
"packageManager": "[email protected]",
"workspaces": [
"packages/*"
],
"scripts": {
"e": "yarn workspace @micro-lc/back-kit-engine",
"t": "yarn workspace @micro-lc/back-kit-templates",
"check:types": "yarn workspaces foreach --all run check:types",
"build": "yarn workspaces foreach --all run build",
"cleanup": "yarn workspaces foreach --all --parallel run cleanup",
"lint:code": "eslint . --ext .mjs,.js,.jsx,.ts,.tsx,.schema.json --resolve-plugins-relative-to .",
"lint:style": "stylelint \"**/*.{css,less}\" --allow-empty-input",
"lint": "NODE_OPTIONS=--max-old-space-size=10000 yarn run-p lint:code lint:style",
"test": "yarn workspaces foreach --all run test",
"tag-templates": "ts-node scripts/tag-templates.ts",
"postinstall": "husky install"
},
"devDependencies": {
"@ts-type/package-dts": "^2.0.8",
"@types/eslint": "^8.40.2",
"@types/node": "^20.3.2",
"@typescript-eslint/eslint-plugin": "^5.60.1",
"@typescript-eslint/parser": "^5.60.1",
"confusing-browser-globals": "^1.0.11",
"eslint": "^8.43.0",
"eslint-config-esnext": "^4.1.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jest": "^27.2.2",
"eslint-plugin-jsonc": "^2.9.0",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-mocha": "^10.1.0",
"eslint-plugin-n": "^16.0.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-sort-keys-fix": "^1.1.2",
"eslint-plugin-typescript-sort-keys": "^2.3.0",
"eslint-visitor-keys": "^3.4.1",
"husky": "^8.0.3",
"jsonc-eslint-parser": "^2.3.0",
"npm-run-all": "^4.1.5",
"rimraf": "^5.0.1",
"stylelint": "^15.9.0",
"stylelint-config-rational-order": "^0.1.2",
"stylelint-config-standard": "^33.0.0",
"stylelint-declaration-block-no-ignored-properties": "^2.7.0",
"ts-node": "^10.9.1",
"typescript": "~5.0.4"
},
"engines": {
"node": ">=16.17.0"
}
}