-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
66 lines (66 loc) · 1.87 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
{
"private": true,
"scripts": {
"commit": "cz",
"build": "turbo build",
"dev": "turbo dev",
"lint": "turbo lint",
"test": "turbo build --filter=!@react-awesome/docs && turbo test",
"typecheck": "turbo typecheck",
"clean": "turbo clean && rimraf node_modules",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"format:fix": "prettier --write \"**/*.{ts,tsx,md}\"",
"changeset": "changeset",
"version-packages": "changeset version",
"release": "yarn build --filter=!@react-awesome/docs && changeset publish",
"docs": "yarn workspace @react-awesome/docs",
"eslint": "yarn workspace @react-awesome/eslint-config",
"prepare": "husky",
"gen:repo": "node ./scripts/create-new-repo.js"
},
"devDependencies": {
"@changesets/cli": "2.26.2",
"@inquirer/prompts": "^3.3.2",
"@react-awesome/eslint-config": "*",
"@testing-library/jest-dom": "^6.3.0",
"@testing-library/react": "^14.1.2",
"@testing-library/user-event": "^14.5.2",
"@vitejs/plugin-react": "^4.2.1",
"@vitest/coverage-istanbul": "^1.2.1",
"@vitest/ui": "^1.2.1",
"chalk": "^4.1.2",
"cli-spinner": "^0.2.10",
"commitizen": "^4.3.0",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.56.0",
"figlet": "^1.7.0",
"husky": "^9.0.6",
"jsdom": "^24.0.0",
"lodash": "^4.17.21",
"prettier": "^3.1.1",
"rimraf": "^5.0.5",
"tty-table": "^4.2.3",
"turbo": "latest",
"vite": "^5.0.12",
"vite-plugin-css-injected-by-js": "^3.3.1",
"vite-plugin-dts": "^3.7.1",
"vitest": "^1.2.1"
},
"engines": {
"node": ">=18",
"npm": "Please use yarn",
"pnpm": "Please use yarn"
},
"packageManager": "yarn@1.22.19",
"workspaces": [
"apps/*",
"packages/*",
"shared/*"
],
"version": "0.0.0",
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
}
}