-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.21 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.21 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
{
"name": "pixie-ui",
"version": "0.0.0",
"private": true,
"description": "轻量开箱即用的UI组件库",
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev",
"lint": "pnpm run tsc && turbo run lint",
"test": "turbo run test",
"clean": "turbo run clean && rm -rf node_modules",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"changeset": "changeset",
"version-packages": "changeset version",
"release": "pnpm run tsc && turbo run build && changeset publish",
"tsc": "tsc --noEmit"
},
"devDependencies": {
"@changesets/cli": "^2.26.2",
"@emotion/babel-plugin": "^11.11.0",
"@testing-library/jest-dom": "^6.1.5",
"@testing-library/react": "^14.1.2",
"@testing-library/react-hooks": "^8.0.1",
"@types/jest": "^29.5.11",
"@types/node": "^20.10.5",
"@types/react": "^18.2.45",
"@types/react-dom": "^18.2.18",
"eslint": "^9.0.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"prettier": "^3.1.1",
"stylelint": "^15.11.0",
"ts-jest": "^29.1.1",
"tsup": "^8.0.1",
"turbo": "^2.5.6",
"typescript": "^5.3.3"
},
"packageManager": "pnpm@8.6.10",
"engines": {
"node": ">=18.0.0"
}
}