-
Notifications
You must be signed in to change notification settings - Fork 67
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 2.93 KB
/
package.json
File metadata and controls
87 lines (87 loc) · 2.93 KB
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
{
"name": "@react-simplikit/root",
"private": true,
"type": "module",
"workspaces": [
"packages/*",
"examples/*"
],
"homepage": "https://react-simplikit.slash.page",
"bugs": "https://github.com/toss/react-simplikit/issues",
"repository": {
"type": "git",
"url": "git+https://github.com/toss/react-simplikit.git"
},
"license": "MIT",
"scripts": {
"clean": "rimraf ./coverage ./node_modules",
"clean:all": "yarn clean && yarn workspaces foreach -Ap run clean",
"example:vite": "yarn workspace with-vite dev",
"example:next": "yarn workspace with-nextjs dev",
"scaffold": "tsx .scripts/index.ts scaffold",
"changeset": "changeset",
"changeset:version": "changeset version",
"changeset:publish": "changeset publish",
"docs:gen": "tsx .scripts/index.ts generate-docs",
"docs:dev": "vitepress dev",
"docs:build": "vitepress build",
"docs:preview": "vitepress preview",
"fix": "yarn fix:lint && yarn fix:format",
"fix:format": "prettier . --write",
"fix:lint": "yarn workspaces foreach -Ap run lint --fix",
"test": "yarn test:lint && yarn test:format && yarn test:type",
"test:format": "prettier . --list-different",
"test:lint": "yarn workspaces foreach -Ap run lint",
"test:type": "yarn workspaces foreach -Ap run typecheck",
"test:spec": "yarn workspaces foreach -Ap run test",
"test:coverage": "yarn workspaces foreach -Ap run test:coverage",
"build": "yarn workspaces foreach -Apt run build",
"prepack": "yarn build"
},
"devDependencies": {
"@changesets/changelog-github": "^0.5.1",
"@changesets/cli": "^2.29.7",
"@eslint/js": "^9.39.3",
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.1.0",
"@trivago/prettier-plugin-sort-imports": "^5.2.0",
"@types/node": "^22.10.2",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"@vitest/coverage-v8": "^2.1.8",
"commander": "^13.1.0",
"comment-parser": "^1.4.1",
"corepack": "^0.30.0",
"dotenv": "^16.4.7",
"esbuild": "^0.24.0",
"eslint": "^9.39.3",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react": "^7.37.2",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-simple-import-sort": "^12.1.1",
"eslint-plugin-unused-imports": "^4.1.4",
"fast-glob": "^3.3.3",
"globals": "^15.13.0",
"jsdom": "^25.0.1",
"listr2": "^8.2.5",
"nanoid": "^5.1.5",
"openai": "^4.93.0",
"ora": "^8.2.0",
"prettier": "^3.4.2",
"prettier-plugin-sort-re-exports": "^0.1.0",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"rimraf": "^6.0.1",
"tsup": "^8.3.5",
"tsx": "^4.19.2",
"typescript": "^5.7.2",
"typescript-eslint": "^8.18.0",
"vitepress": "^1.5.0",
"vitest": "^2.1.8",
"vue": "^3.5.13"
},
"packageManager": "yarn@4.10.2"
}