-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
116 lines (116 loc) · 3.54 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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
{
"name": "lanblue",
"version": "0.1.34",
"main": "./lib/LANUI.umd.cjs",
"module": "./lib/LANUI.js",
"typings": "./lib/main.d.ts",
"type": "module",
"styles": "./lib/style.css",
"exports": {
".": {
"import": "./lib/LANUI.js",
"require": "./lib/LANUI.umd.cjs"
},
"./lib/style.css": {
"import": "./lib/style.css",
"require": "./lib/style.css"
}
},
"files": [
"lib"
],
"scripts": {
"dev": "vite",
"build": "vite build && tsc",
"preview": "vite preview",
"prepare": "husky install",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook",
"test-storybook": "test-storybook",
"test": "jest --watchAll"
},
"dependencies": {
"@babel/cli": "^7.21.0",
"@storybook/addon-a11y": "^6.5.16",
"@storybook/addon-docs": "^6.5.16",
"classnames": "^2.3.2",
"cross-env": "^7.0.3",
"cssloader": "^1.1.1",
"jest-axe": "^7.0.0",
"lanblue": "^0.1.34",
"less-loader": "^11.1.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"tslib": "^2.5.0",
"yarn": "^1.22.19"
},
"devDependencies": {
"@babel/core": "^7.4.5",
"@babel/preset-env": "^7.4.5",
"@commitlint/cli": "^17.4.4",
"@commitlint/config-conventional": "^17.4.4",
"@jest/globals": "^29.4.0",
"@rollup/plugin-typescript": "^11.0.0",
"@storybook/addon-actions": "^6.5.16",
"@storybook/addon-essentials": "^6.5.16",
"@storybook/addon-interactions": "^6.5.16",
"@storybook/addon-links": "^6.5.16",
"@storybook/builder-vite": "^0.4.2",
"@storybook/jest": "^0.0.10",
"@storybook/react": "^6.5.16",
"@storybook/test-runner": "^0.9.4",
"@storybook/testing-library": "^0.0.13",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^14.0.0",
"@types/faker": "^6.6.9",
"@types/jest": "^29.4.0",
"@types/jest-axe": "^3.5.5",
"@types/react": "^18.0.27",
"@types/react-dom": "^18.0.10",
"@typescript-eslint/eslint-plugin": "^5.54.0",
"@vitejs/plugin-react": "^3.1.0",
"babel-loader": "^8.3.0",
"eslint": "^8.35.0",
"eslint-config-prettier": "^8.7.0",
"eslint-config-standard-with-typescript": "^34.0.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-n": "^15.6.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-storybook": "^0.6.11",
"husky": "^8.0.3",
"identity-obj-proxy": "^3.0.0",
"jest": "^29.4.0",
"jest-environment-jsdom": "^29.4.0",
"less": "^4.1.3",
"lint-staged": "^13.1.2",
"prettier": "2.8.4",
"terser": "^5.4.0",
"ts-jest": "^29.0.5",
"typescript": "^4.9.5",
"vite": "^4.1.0",
"vite-plugin-libcss": "^1.0.5"
},
"lint-staged": {
"*.{md,json}": [
"prettier --write --no-error-on-unmatched-pattern"
],
"*.{css,less}": [
"prettier --write"
],
"*.{js,jsx}": [
"prettier --write"
],
"*.{ts,tsx}": [
"prettier --parser=typescript --write"
]
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest",
"prettier"
]
}
}