-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
96 lines (96 loc) · 2.48 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
{
"name": "recastui.com",
"private": true,
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev",
"changeset": "changeset",
"clean": "turbo run clean",
"preview": "turbo run preview",
"commit": "git-cz",
"lint": "turbo run lint",
"prepare": "husky install",
"release": "turbo run build && changeset publish",
"test": "turbo run test",
"typecheck": "turbo run typecheck",
"format": "prettier --write \"**/*.{astro,ts,jsx,tsx,md,mdx}\"",
"version-packages": "changeset version",
"create:component": "plop component"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{md,mdx,json}": [
"prettier --write"
],
"*.{ts?(x),js?(x)}": [
"eslint",
"prettier --write"
],
"package.json": "npx sort-package-json"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"devDependencies": {
"@changesets/changelog-github": "0.4.8",
"@changesets/cli": "2.24.4",
"@commitlint/cli": "17.1.2",
"@commitlint/config-conventional": "17.1.0",
"@commitlint/cz-commitlint": "17.1.2",
"@commitlint/prompt": "17.1.2",
"@testing-library/dom": "8.17.1",
"@testing-library/jest-dom": "5.16.5",
"@testing-library/user-event": "14.4.3",
"@types/jest": "29.0.0",
"@types/lodash.merge": "4.6.7",
"@types/node": "18.7.16",
"@types/prismjs": "1.26.0",
"@types/scroll-lock": "2.1.0",
"@types/testing-library__jest-dom": "5.14.5",
"@typescript-eslint/eslint-plugin": "5.36.2",
"@typescript-eslint/parser": "5.36.2",
"chalk": "4.1.2",
"commitizen": "4.2.5",
"eslint": "8.34.0",
"eslint-config-recastui": "workspace:*",
"eslint-import-resolver-typescript": "3.5.1",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-jsx-a11y": "6.6.1",
"eslint-plugin-prettier": "4.2.1",
"eslint-plugin-simple-import-sort": "8.0.0",
"fast-glob": "3.2.12",
"find-up": "6.3.0",
"husky": "8.0.0",
"inquirer": "8",
"jest": "29.0.2",
"jest-environment-jsdom": "29.0.3",
"lint-staged": "13.0.3",
"lodash": "4.17.21",
"plop": "3.1.2",
"prettier": "2.8.4",
"prettier-plugin-astro": "^0.8.0",
"prettier-plugin-tailwindcss": "^0.1.13",
"prismjs": "1.29.0",
"react-docgen-typescript": "2.2.2",
"rimraf": "3.0.2",
"standard-version": "9.5.0",
"ts-jest": "29.0.0",
"turbo": "1.8.5",
"typescript": "4.9.5"
},
"packageManager": "[email protected]",
"volta": {
"node": "18.6.0"
}
}