-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
100 lines (100 loc) · 2.95 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"name": "@haetae/root",
"version": "0.0.1",
"type": "module",
"license": "MIT",
"private": true,
"engines": {
"node": ">=20",
"pnpm": ">=8.10.2"
},
"packageManager": "pnpm@8.10.2",
"scripts": {
"ts": "node --loader ts-node/esm --loader ./loader.js",
"dev": "pnpm turbo dev --concurrency 11",
"lint": "pnpm lint:ci --fix",
"lint:ci": "eslint \"*.{js,cjs,mjs,jsx,ts,cts,mts,tsx,md,mdx}\"",
"lint:md": "pnpm lint:md:ci --fix",
"lint:md:ci": "markdownlint",
"test": "cross-env NODE_OPTIONS=--experimental-vm-modules jest --coverage",
"husky-skip": "cross-env HUSKY=0",
"commit": "git cz",
"prepare": "husky install",
"changeset:publish": "del-cli packages/docs/package.json examples/ && pnpm -r publish --no-git-checks && changeset tag && git checkout packages/docs/package.json examples/ && git push --follow-tags"
},
"lint-staged": {
"*.{js,cjs,mjs,jsx,ts,cts,mts,tsx,md}": [
"eslint --fix"
],
"*.md": [
"markdownlint --fix"
]
},
"prettier": "@jjangga0214/prettier-config",
"devDependencies": {
"@changesets/changelog-github": "^0.4.5",
"@changesets/cli": "^2.23.2",
"@commitlint/cli": "^16.0.1",
"@jjangga0214/commitlint-config": "^1.0.7",
"@jjangga0214/eslint-config": "^3.3.1",
"@jjangga0214/jest-config": "^4.1.2",
"@jjangga0214/markdownlint-config": "^1.0.3",
"@jjangga0214/prettier-config": "^2.0.2",
"@jjangga0214/tsconfig": "^3.3.0",
"@swc/core": "^1.2.125",
"@swc/helpers": "^0.2.12",
"@swc/jest": "^0.2.21",
"@types/jest": "~29.5.0",
"@types/node": "^18.6.0",
"@typescript-eslint/eslint-plugin": "^5.8.1",
"@typescript-eslint/parser": "^4.28.4",
"commitizen": "^4.2.4",
"cross-env": "^7.0.3",
"del-cli": "^5.0.0",
"dirname-filename-esm": "^1.1.1",
"eslint": "^8.6.0",
"eslint-import-resolver-typescript": "^2.5.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jest": "^25.3.4",
"eslint-plugin-jsx-a11y": "^6.6.1",
"eslint-plugin-markdown": "^2.2.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.30.1",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-unicorn": "^39.0.0",
"husky": "^7.0.1",
"jest": "^29.5.0",
"lint-staged": "^12.1.5",
"markdownlint-cli": "^0.30.0",
"prettier": "^2.5.1",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.1",
"tsconfig-paths": "^3.12.1",
"turbo": "^1.9.9",
"typescript": "^4.8.2"
},
"keywords": [
"haetae",
"test",
"lint",
"build",
"incremental",
"ci",
"DevOps",
"devops",
"monorepo"
],
"repository": {
"type": "git",
"url": "https://github.com/jjangga0214/haetae.git"
},
"bugs": {
"url": "https://github.com/jjangga0214/haetae/issues"
},
"homepage": "https://github.com/jjangga0214/haetae",
"author": {
"name": "Gil B. Chan",
"email": "bnbcmindnpass@gmail.com",
"url": "https://github.com/jjangga0214"
}
}