-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
79 lines (79 loc) · 2.2 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
{
"name": "root",
"private": true,
"scripts": {
"build": "node scripts/build-cli.mjs",
"cov": "yarn test --coverage",
"dev": "yarn docs",
"docs": "ERROR_OVERLAY=none dumi dev",
"docs:build": "dumi build",
"postinstall": "husky install",
"lint": "eslint --ext .ts,.tsx .",
"lint:fix": "eslint --fix --ext .ts,.tsx .",
"release": "node scripts/release.mjs",
"test": "jest",
"test:d": "node --inspect-brk node_modules/.bin/jest --runInBand",
"test:w": "yarn test --watch",
"test:w:d": "yarn test:d --watch"
},
"lint-staged": {
"*.{ts,tsx}": [
"tsc-files --noEmit"
],
"*.{js,jsx,ts,tsx}": [
"eslint --fix"
],
"*.{scss,css}": [
"stylelint --fix"
],
"*.{md,json}": [
"prettier --write --no-error-on-unmatched-pattern"
]
},
"devDependencies": {
"@ant-design/icons": "^5.0.1",
"@dnd-kit/core": "^6.1.0",
"@dnd-kit/modifiers": "^7.0.0",
"@dnd-kit/sortable": "^8.0.0",
"@dnd-kit/utilities": "^3.2.2",
"@emotion/css": "^11.10.6",
"@j-lints/commitlint-config": "^0.0.2",
"@j-lints/eslint-config-ts-react": "^0.0.2",
"@j-lints/stylelint-config-scss": "^0.0.2",
"@jest/types": "^29.6.3",
"@swc/cli": "^0.1.62",
"@swc/core": "^1.3.44",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@testing-library/react-hooks": "^8.0.1",
"@types/jest": "^29.2.6",
"@types/react": "^18.0.27",
"@types/react-syntax-highlighter": "^15.5.6",
"@types/testing-library__jest-dom": "^5.14.9",
"antd": "^5.9.0",
"chalk": "^5.2.0",
"classnames": "^2.3.2",
"dayjs": "^1.11.0",
"dumi": "^2.4.16",
"execa": "^7.1.1",
"father": "^4.3.8",
"glob": "^10.0.0",
"husky": "^8.0.3",
"inquirer": "^9.1.5",
"jest": "^29.3.1",
"jest-environment-jsdom": "^29.4.2",
"lint-staged": "^13.1.0",
"lodash": "^4.17.21",
"lodash-es": "^4.17.21",
"ora": "^6.3.0",
"pinyin-pro": "^3.22.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-syntax-highlighter": "^15.5.0",
"sass": "^1.58.2",
"ts-jest": "^29.0.5",
"ts-node": "^10.9.2",
"tsc-files": "^1.1.4",
"typescript": "^5.1.6"
}
}