-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.23 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
{
"name": "antd-date-picker",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"start": "npm run build && vite preview",
"lint": "eslint --ext .ts,.tsx src --color",
"format": "prettier --write \"./src/**/*.{ts,tsx,json}\"",
"prepare": "husky install",
"analyze": "npm run lint && tsc && vite build --mode=analyze && source-map-explorer 'dist/assets/*.js'"
},
"dependencies": {
"dayjs": "^1.11.7",
"rc-picker": "^3.6.2",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@total-typescript/ts-reset": "^0.4.2",
"@types/node": "^18.11.11",
"@types/react": "^18.0.24",
"@types/react-dom": "^18.0.8",
"@typescript-eslint/eslint-plugin": "^5.48.1",
"@typescript-eslint/parser": "^5.48.1",
"@vitejs/plugin-react": "^2.2.0",
"eslint": "^8.31.0",
"eslint-config-react-app": "^7.0.1",
"husky": "^8.0.0",
"lint-staged": "^13.1.0",
"prettier": "^2.8.2",
"sass": "^1.57.1",
"source-map-explorer": "^2.5.3",
"typescript": "^4.6.4",
"vite": "^3.2.3",
"vite-plugin-checker": "^0.5.1",
"vite-plugin-environment": "^1.1.3"
}
}