-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 2.14 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
{
"name": "ant-lunar-picker",
"version": "0.2.1",
"description": "适用于antd的农历日期选择器",
"main": "dist/main.js",
"module": "dist/main.js",
"types": "typings/lunarDatePicker.d.ts",
"scripts": {
"prepare": "husky install",
"emitDeclaration": "tsc --emitDeclarationOnly",
"dev": "rimraf ./dist && cross-env NODE_ENV=development npx webpack --config ./config/webpack.config",
"build": "rimraf ./typings && npm run emitDeclaration && rimraf ./dist && cross-env NODE_ENV=production npx webpack --config ./config/webpack.config",
"lint": "eslint --config .eslintrc.js --ext .jsx,.js,.ts,.tsx --fix"
},
"keywords": [
"react",
"antd",
"lunar",
"date-picker"
],
"author": "slatejack",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.19.0",
"@babel/preset-env": "^7.14.4",
"@babel/preset-react": "^7.13.13",
"@babel/preset-typescript": "^7.23.3",
"@typescript-eslint/eslint-plugin": "^5.37.0",
"@typescript-eslint/parser": "^5.37.0",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.3.0",
"buffer": "^6.0.3",
"clean-webpack-plugin": "^4.0.0",
"core-js": "^3.35.1",
"cross-env": "^7.0.3",
"css-loader": "^6.7.1",
"eslint": "^8.23.1",
"eslint-config-standard-with-typescript": "^23.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-n": "^15.2.5",
"eslint-plugin-promise": "^6.0.1",
"eslint-plugin-react": "^7.31.8",
"eslint-webpack-plugin": "^3.2.0",
"html-webpack-plugin": "^5.6.0",
"husky": "^8.0.1",
"lint-staged": "13.0.3",
"stream-browserify": "^3.0.0",
"style-loader": "^3.3.1",
"terser-webpack-plugin": "^5.3.6",
"ts-loader": "^9.3.1",
"typescript": "^4.8.3",
"webpack": "^5.90.0",
"webpack-cli": "^4.10.0"
},
"lint-staged": {
"src/**/*.{ts,tsx,js}": [
"npm run lint"
]
},
"dependencies": {
"@ant-design/icons": "^5.3.0",
"antd": "^5.13.3",
"antd-style": "^3.6.1",
"classnames": "^2.5.1",
"dayjs": "^1.11.10",
"lunar-typescript": "^1.7.1",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"_moduleAliases": {
"@": "src"
}
}