-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
92 lines (92 loc) · 3.1 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
{
"name": "futil",
"version": "0.0.0",
"description": "A suite of frontend utilies in convenient unbarreled packages",
"repository": "git@github.com:bigwoof91/frontend-utils.git",
"author": "Michael Wolf",
"license": "MIT",
"private": true,
"packageManager": "pnpm@8.9.0",
"scripts": {
"___________DEVELOPMENT___________": "development scripts",
"commit": "git cz",
"setup": "pnpm i && husky install",
"dev": "turbo run dev",
"fwc": "./tools/futil-workspace-command",
"plop:pkg": "plop package",
"qnm": "qnm",
"___________QUALITY___________": "code quality and maintenance",
"lint": "eslint \"{,!(node_modules)/**/}*.{ts,tsx,md,mdx,yml}\" --report-unused-disable-directives ",
"tscheck": "turbo run tscheck",
"quality": "pnpm lint && pnpm test",
"test": "vitest",
"test:coverage": "vitest run --coverage",
"test:watch": "vitest --watch",
"clean": "turbo run clean && rimraf node_modules",
"___________BUILD___________": "building/bundling scripts",
"build": "turbo run build",
"build:quick": "turbo run build:quick",
"productionize": "node tools/productionize-packages.js",
"___________RELEASE___________": "release scripts",
"changeset": "changeset",
"version:stable": "changeset version && pnpm install --no-frozen-lockfile",
"release:stable": "pnpm build && changeset publish"
},
"config": {
"commitizen": {
"path": "node_modules/@commitlint/cz-commitlint"
}
},
"dependencies": {
"@babel/cli": "^7.23.0",
"@babel/core": "^7.23.0",
"@changesets/changelog-github": "^0.4.8",
"@changesets/cli": "^2.26.2",
"@commitlint/cli": "^17.7.2",
"@commitlint/cz-commitlint": "^17.7.2",
"@manypkg/cli": "^0.21.0",
"@testing-library/jest-dom": "^6.1.3",
"@testing-library/react": "^14.0.0",
"@types/eslint": "^8.44.3",
"@typescript-eslint/eslint-plugin": "^6.7.4",
"@typescript-eslint/parser": "^6.7.4",
"@vitejs/plugin-react-swc": "^3.4.0",
"@vitest/coverage-v8": "^0.34.6",
"colorette": "^2.0.20",
"commitizen": "^4.3.0",
"eslint": "^8.50.0",
"eslint-config-prettier": "^9.0.0",
"eslint-config-turbo": "^1.10.15",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-jest-dom": "^5.1.0",
"eslint-plugin-mdx": "^2.2.0",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-simple-import-sort": "^10.0.0",
"eslint-plugin-testing-library": "^6.0.2",
"eslint-plugin-unicorn": "^48.0.1",
"eslint-plugin-vitest": "^0.3.2",
"eslint-plugin-yml": "^1.9.0",
"execa": "^8.0.1",
"find-packages": "^10.0.4",
"happy-dom": "^12.9.0",
"husky": "^8.0.3",
"inquirer": "^8.2.6",
"jsdom": "^22.1.0",
"lint-staged": "^14.0.1",
"outdent": "^0.8.0",
"plop": "^4.0.0",
"prettier": "^3.0.3",
"qnm": "^2.10.3",
"rimraf": "^5.0.5",
"ts-node": "^10.9.1",
"tsup": "^7.2.0",
"turbo": "latest",
"typescript": "^5.2.2",
"vite": "^4.4.11",
"vitest": "^0.34.6",
"vitest-fetch-mock": "^0.2.2",
"zx": "^7.2.3"
}
}