This repository was archived by the owner on Jan 9, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
115 lines (115 loc) · 3.37 KB
/
package.json
File metadata and controls
115 lines (115 loc) · 3.37 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
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
{
"name": "@okee-uikit/m-react",
"version": "0.1.7",
"author": "Totoo",
"license": "MIT",
"description": "OKee Mobile UI For React",
"keywords": [
"OKee",
"react",
"component",
"ui",
"framework",
"mobile"
],
"main": "lib/index.js",
"style": "lib/index.css",
"module": "es/index.js",
"typings": "lib/index.d.ts",
"files": [
"es",
"lib",
"types"
],
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"scripts": {
"start": "npm run build:gen-files && webpack-dev-server --config build/webpack.site.dev.js",
"build": "node build/build-lib.js",
"build:gen-files": "node build/build-entry.js && node build/build-icons.js",
"build:mkdir": "node build/build-mkdir.js",
"build:declaration": "tsc --declaration --esModuleInterop --emitDeclarationOnly --skipLibCheck --jsx react lib/index.tsx lib/public-api/index.ts es/public-api/index.ts",
"lint": "eslint --fix --ext .ts,.tsx,.js,jsx src && stylelint \"src/**/*.less\" --fix"
},
"dependencies": {
"core-js": "^3.9.1",
"dayjs": "^1.9.7",
"lodash.throttle": "^4.1.1",
"react-transition-group": "^4.3.0"
},
"devDependencies": {
"@babel/core": "^7.8.6",
"@babel/preset-env": "^7.8.6",
"@babel/preset-react": "^7.8.3",
"@babel/preset-typescript": "^7.8.3",
"@mdx-js/loader": "^1.6.22",
"@okee-uikit/less-var-mark": "^0.0.11",
"@okee-uikit/postcss-var": "^0.0.5",
"@types/history": "^4.7.5",
"@types/lodash.throttle": "^4.1.6",
"@types/react": "^16.9.23",
"@types/react-dom": "^16.9.5",
"@types/react-router-dom": "^5.1.3",
"@types/react-transition-group": "^4.2.4",
"@types/stats.js": "^0.17.0",
"@types/webpack-env": "^1.15.1",
"@typescript-eslint/eslint-plugin": "^5.3.1",
"@typescript-eslint/parser": "^5.3.1",
"autoprefixer": "^9.7.4",
"babel-loader": "^8.0.6",
"babel-plugin-transform-class-properties": "^6.24.1",
"cross-env": "^7.0.2",
"css-loader": "^3.4.2",
"css-minimizer-webpack-plugin": "^1.1.5",
"csso": "^4.0.2",
"dependency-tree": "^7.2.1",
"eslint": "^8.2.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.27.0",
"eslint-plugin-react-hooks": "^4.3.0",
"fast-glob": "^3.2.2",
"file-loader": "^6.0.0",
"fs-extra": "^8.1.0",
"history": "^4.10.1",
"html-loader": "^1.0.0",
"html-webpack-plugin": "^3.2.0",
"husky": "~1.2.0",
"less": "^3.11.1",
"less-loader": "^5.0.0",
"lz-string": "^1.4.4",
"mini-css-extract-plugin": "^1.3.3",
"postcss-load-config": "^2.1.0",
"postcss-loader": "^3.0.0",
"postcss-px2rem": "^0.3.0",
"prettier": "^2.4.1",
"react": "^17.0.0",
"react-dom": "^17.0.0",
"react-router-dom": "^5.1.2",
"shelljs": "^0.8.3",
"signale": "^1.4.0",
"stats.js": "^0.17.0",
"style-loader": "^1.1.3",
"stylelint": "^13.2.0",
"stylelint-config-rational-order": "^0.1.2",
"stylelint-config-standard": "^20.0.0",
"stylelint-order": "^4.0.0",
"typescript": "^3.8.3",
"uppercamelcase": "^3.0.0",
"url-loader": "^4.1.0",
"webpack": "^4.41.6",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.10.3",
"webpack-merge": "^4.2.2"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint"
}
},
"browserslist": [
"Android >= 4.0",
"iOS >= 7"
]
}