-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
130 lines (130 loc) · 3.9 KB
/
Copy pathpackage.json
File metadata and controls
130 lines (130 loc) · 3.9 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
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
{
"name": "morle",
"license": "MIT",
"private": true,
"version": "0.0.0",
"scripts": {
"build": "vite build",
"commit": "cz",
"dev": "vite --open",
"prepare": "husky install",
"preview": "vite preview",
"preview:test": "start-server-and-test preview http://localhost:4173",
"test": "vitest",
"test:ci": "vitest run",
"test:e2e": "pnpm preview:test 'cypress open'",
"test:e2e:headless": "pnpm preview:test 'cypress run'",
"test:e2e:ci": "vite build && pnpm preview:test 'cypress run --record'",
"format": "prettier -uw --cache --ignore-path .gitignore .",
"run-tsc": "tsc",
"run-eslint": "eslint --cache --fix --ignore-path .gitignore --ext .ts,.tsx src",
"run-stylelint": "stylelint --cache --fix --ignore-path .gitignore \"**/*.css\"",
"lint": "run-p run-tsc run-eslint run-stylelint",
"validate": "run-p lint test:ci test:e2e:headless"
},
"dependencies": {
"@ant-design/icons": "^4.7.0",
"@ant-design/pro-components": "^1.1.14",
"@ant-design/pro-layout": "^6.38.16",
"antd": "^4.21.7",
"rc-field-form": "^1.27.1",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-query": "3.39.2",
"react-router-dom": "6.3.0"
},
"devDependencies": {
"@babel/core": "7.18.6",
"@babel/preset-env": "7.18.6",
"@cypress/code-coverage": "3.10.0",
"@nabla/vite-plugin-eslint": "1.4.1",
"@tailwindcss/forms": "0.5.2",
"@testing-library/cypress": "8.0.3",
"@testing-library/dom": "8.14.0",
"@testing-library/jest-dom": "5.16.4",
"@testing-library/react": "12.1.5",
"@testing-library/react-hooks": "8.0.1",
"@testing-library/user-event": "14.2.6",
"@types/css-mediaquery": "0.1.1",
"@types/react": "17.0.47",
"@types/react-dom": "17.0.17",
"@types/react-router-dom": "5.3.3",
"@types/testing-library__jest-dom": "5.14.5",
"@typescript-eslint/eslint-plugin": "5.30.0",
"@typescript-eslint/parser": "5.30.0",
"@vitejs/plugin-react": "1.3.2",
"autoprefixer": "10.4.7",
"babel-loader": "8.2.5",
"c8": "7.11.3",
"commitizen": "4.2.5",
"css-mediaquery": "0.1.2",
"cypress": "9.7.0",
"cz-conventional-changelog": "3.3.0",
"eslint": "8.19.0",
"eslint-config-airbnb": "19.0.4",
"eslint-config-airbnb-base": "15.0.0",
"eslint-config-airbnb-typescript": "17.0.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-cypress": "2.12.1",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-jsx-a11y": "6.5.1",
"eslint-plugin-react": "7.30.1",
"eslint-plugin-react-hooks": "4.6.0",
"eslint-plugin-react-prefer-function-component": "3.0.0",
"eslint-plugin-testing-library": "5.5.1",
"eslint-plugin-unicorn": "43.0.0",
"husky": "8.0.1",
"jsdom": "20.0.0",
"less": "^4.1.3",
"less-vars-to-js": "^1.3.0",
"lint-staged": "13.0.3",
"msw": "0.44.1",
"npm-run-all": "4.1.5",
"postcss": "8.4.14",
"prettier": "2.7.1",
"prettier-plugin-tailwindcss": "0.1.12",
"rollup": "2.77.0",
"rollup-plugin-istanbul": "3.0.0",
"start-server-and-test": "1.14.0",
"stylelint": "14.9.1",
"stylelint-config-prettier": "9.0.3",
"stylelint-config-standard": "26.0.0",
"tailwindcss": "3.1.6",
"typescript": "4.7.4",
"vite": "3.0.2",
"vite-aliases": "^0.9.2",
"vite-plugin-antd-layout": "^0.4.0",
"vite-plugin-babel-import": "^2.0.5",
"vite-plugin-imp": "^2.2.0",
"vite-plugin-inspect": "^0.6.0",
"vite-plugin-pwa": "0.12.3",
"vite-react-jsx": "^1.1.2",
"vite-tsconfig-paths": "3.5.0",
"vitest": "0.16.0",
"webpack": "5.73.0",
"whatwg-fetch": "3.6.2",
"workbox-build": "6.5.3",
"workbox-window": "6.5.3"
},
"browserslist": {
"production": "Edge >= 18, Firefox >= 60, Chrome >= 61, Safari >= 11, Opera >= 48",
"development": [
"last 1 chrome version",
"last 1 firefox version"
]
},
"lint-staged": {
"*": "prettier -uw --cache",
"*.css": "stylelint --cache --fix",
"*.{ts,tsx}": [
"eslint --cache --fix",
"vitest related --run --coverage=false"
]
},
"nyc": {
"report-dir": "coverage/cypress",
"reporter": [
"lcov"
]
}
}