-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.61 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.61 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
{
"name": "tiny-design",
"version": "1.0.0",
"private": true,
"description": "A friendly UI component set for React",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/wangdicoder/tiny-design.git"
},
"author": "Di Wang<wangdicoder@gmail.com>",
"packageManager": "pnpm@10.32.1",
"engines": {
"node": ">=22"
},
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev",
"test": "turbo run test",
"lint": "turbo run lint",
"lint:style": "turbo run lint:style",
"prepare": "husky",
"changeset": "changeset",
"version-packages": "changeset version",
"release": "turbo run build && changeset publish"
},
"devDependencies": {
"@changesets/changelog-github": "^0.6.0",
"@changesets/cli": "^2.30.0",
"@changesets/get-github-info": "^0.8.0",
"@eslint/js": "^9.0.0",
"eslint": "^9.0.0",
"eslint-plugin-jest": "^28.0.0",
"eslint-plugin-jest-dom": "^5.0.0",
"eslint-plugin-react": "^7.37.0",
"eslint-plugin-react-hooks": "^5.0.0",
"husky": "^9.0.0",
"lint-staged": "^15.0.0",
"postcss": "^8.4.0",
"prettier": "^3.0.0",
"stylelint": "^16.0.0",
"stylelint-config-standard-scss": "^14.0.0",
"turbo": "^2.8.16",
"typescript": "^5.4.0",
"typescript-eslint": "^8.0.0"
},
"lint-staged": {
"packages/{react/src,tokens/scss}/**/*.scss": [
"stylelint --fix"
]
},
"browserslist": [
"> 0.5%",
"last 2 versions",
"Firefox ESR",
"not dead",
"not IE 11"
],
"pnpm": {
"onlyBuiltDependencies": [
"esbuild",
"@parcel/watcher"
]
}
}