-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
91 lines (91 loc) · 2.37 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
{
"name": "loki-ui",
"version": "0.0.2",
"description": "A lightweight, out of box component library based on tailwindcss",
"license": "MIT",
"sideEffects": [
"**/*.css"
],
"module": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"tailwind.css"
],
"scripts": {
"build": "father build",
"build:watch": "father dev",
"dev": "dumi dev",
"docs:build": "dumi build",
"doctor": "father doctor",
"lint": "npm run lint:es && npm run lint:css",
"lint:css": "stylelint \"{src,test}/**/*.{css,less}\"",
"lint:es": "eslint \"{src,test}/**/*.{js,jsx,ts,tsx}\"",
"prepare": "dumi setup",
"prepublishOnly": "father doctor && npm run build",
"start": "npm run dev"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"lint-staged": {
"*.{md,json}": [
"prettier --write --no-error-on-unmatched-pattern"
],
"*.{css,less}": [
"stylelint --fix",
"prettier --write"
],
"*.{js,jsx}": [
"eslint --fix",
"prettier --write"
],
"*.{ts,tsx}": [
"eslint --fix",
"prettier --parser=typescript --write"
]
},
"dependencies": {
"@floating-ui/dom": "^1.5.3",
"@tanstack/react-table": "^8.12.0",
"class-variance-authority": "^0.7.0",
"classnames": "^2.3.2",
"loki-icon": "^0.0.1",
"rc-field-form": "1.40.0",
"react-transition-group": "^4.4.5",
"scroll-into-view-if-needed": "^3.1.0"
},
"devDependencies": {
"@commitlint/cli": "^18.2.0",
"@commitlint/config-conventional": "^18.1.0",
"@faker-js/faker": "^8.4.1",
"@reskript/config-lint": "^6.0.3",
"@swc/core": "^1.3.53",
"@types/react": "^18.2.33",
"@types/react-dom": "^18.2.14",
"@types/react-transition-group": "^4.4.10",
"@umijs/lint": "^4.0.87",
"@umijs/plugins": "^4.0.87",
"dumi": "^2.2.14",
"eslint": "^8.53.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.1",
"father": "^4.3.6",
"lint-staged": "^15.0.2",
"prettier": "^3.0.3",
"prettier-plugin-organize-imports": "^3.2.3",
"prettier-plugin-packagejson": "^2.4.6",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"semver": "^7.5.4",
"stylelint": "^15.11.0",
"tailwindcss": "^3.3.5"
},
"peerDependencies": {
"react": ">=16.9.0",
"react-dom": ">=16.9.0"
},
"authors": []
}