-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.87 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.87 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
{
"name": "epee-react-admin",
"version": "2.0.0",
"private": true,
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"test": "jest --watchAll",
"test:e2e": "playwright test --headed",
"test:ci": "jest --ci --coverage --runInBand --reporters=default --reporters=jest-junit",
"test:e2e:ci": "playwright test",
"docker:build": "docker build . -t epee-react-admin",
"docker:up": "docker-compose -f ./docker/docker-compose.yml up -d",
"prepare": "husky install",
"analyze": "ANALYZE=true pnpm build"
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx}": "eslint --fix",
"*.{json,ts,tsx,js,jsx,md,scss,less,css,html}": "prettier --write"
},
"dependencies": {
"@ant-design/icons": "^4.7.0",
"@epeejs/pro-layout": "^1.1.0",
"@reduxjs/toolkit": "^1.7.1",
"ahooks": "^3.1.9",
"antd": "^4.23.4",
"classnames": "^2.3.1",
"lodash": "^4.17.21",
"md5": "^2.3.0",
"moment": "^2.29.4",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-redux": "^7.2.4",
"react-router-dom": "^5.2.0",
"redux": "^4.2.0",
"redux-logger": "^3.0.6",
"whatwg-fetch": "^3.6.2"
},
"devDependencies": {
"@commitlint/cli": "^13.1.0",
"@commitlint/config-conventional": "^13.1.0",
"@playwright/test": "^1.31.2",
"@types/lodash": "^4.14.170",
"@types/md5": "^2.3.0",
"@types/node": "^18.14.6",
"@types/react": "^17.0.5",
"@types/react-dom": "^17.0.3",
"@types/react-redux": "^7.1.16",
"@types/react-router-dom": "^5.1.7",
"@types/redux-logger": "^3.0.8",
"@umijs/fabric": "^2.14.1",
"@vitejs/plugin-react": "^4.0.0",
"babel-plugin-lodash": "^3.3.4",
"husky": ">=6",
"less": "^4.1.3",
"lint-staged": ">=10",
"prettier": "^2.3.1",
"rollup-plugin-visualizer": "^5.9.0",
"typescript": "^4.8.4",
"vite": "^4.3.4"
}
}