-
Notifications
You must be signed in to change notification settings - Fork 38
/
package.json
97 lines (97 loc) · 2.69 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
{
"name": "licht-ui",
"author": "style'me",
"private": false,
"version": "0.1.8",
"type": "module",
"main": "./dist/licht-ui.umd.js",
"module": "./dist/licht-ui.es.js",
"typings": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/licht-ui.es.js",
"require": "./dist/licht-ui.umd.js"
}
},
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"build:html": "vite build --config ./build/build.ts",
"preview": "vite preview",
"test": "jest",
"upload-server": "npx json-server ./__mock_server__/db.json --middlewares node_modules/json-server-uploader/index.js"
},
"description": "licht-ui",
"keywords": [
"react",
"typescript",
"vite",
"react-ui",
"ui",
"components",
"licht",
"licht-ui",
"react18"
],
"files": [
"dist/*"
],
"license": "MIT",
"homepage": "https://react.codeym.com/",
"bugs": {
"url": "https://react.codeym.com/",
"email": "1046674804@qq.com"
},
"dependencies": {
"@rollup/plugin-typescript": "^8.3.4",
"@types/jest": "^29.2.2",
"@types/react-transition-group": "^4.4.5",
"@typescript-eslint/eslint-plugin": "^5.40.1",
"@typescript-eslint/parser": "^5.40.1",
"@vitejs/plugin-react": "^2.0.0",
"babel-eslint": "^10.1.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.7.0",
"babel-preset-stage-0": "^6.24.1",
"classnames": "^2.3.1",
"eslint": "^8.26.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.31.10",
"eslint-plugin-react-hooks": "^4.6.0",
"events": "^3.3.0",
"highlight.js": "^11.6.0",
"jest": "^29.3.0",
"lodash": "^4.17.21",
"prettier": "^2.7.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router-dom": "^6.3.0",
"react-transition-group": "^4.4.5",
"sass": "^1.54.1",
"stylelint": "^14.9.1",
"stylelint-config-prettier-scss": "^0.0.1",
"stylelint-config-standard": "^26.0.0",
"stylelint-config-standard-scss": "^5.0.0",
"stylelint-declaration-block-no-ignored-properties": "^2.5.0",
"vite": "^3.0.4"
},
"devDependencies": {
"@babel/core": "^7.18.10",
"@types/events": "^3.0.0",
"@types/lodash": "^4.14.190",
"@types/node": "^18.6.3",
"@types/react": "^18.0.15",
"@types/react-dom": "^18.0.6",
"babel-loader": "^8.2.5",
"cross-env": "^7.0.3",
"eslint-plugin-jsx-a11y": "^6.6.1",
"json-server": "^0.17.1",
"json-server-uploader": "^1.0.3",
"tslib": "^2.4.0",
"typescript": "^4.8.4"
}
}