-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
77 lines (77 loc) · 2.12 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
74
75
76
77
{
"name": "query-template",
"version": "0.1.1",
"private": true,
"dependencies": {
"@ant-design/icons": "^4.6.2",
"@ant-design/pro-table": "^2.48.0",
"@craco/craco": "^6.2.0",
"@reduxjs/toolkit": "^1.5.1",
"@testing-library/jest-dom": "^4.2.4",
"@testing-library/react": "^9.3.2",
"@testing-library/user-event": "^7.1.2",
"antd": "^4.16.11",
"antd-dayjs-webpack-plugin": "^1.0.6",
"craco-less": "^1.18.0",
"less": "^4.1.1",
"less-loader": "^10.0.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-query": "^3.19.2",
"react-redux": "^7.2.3",
"react-router-dom": "^5.2.0",
"react-scripts": "4.0.3"
},
"scripts": {
"start": "craco start",
"build": "craco build",
"test": "NODE_ENV=test CI=true craco test --env=jsdom",
"release": "release-it",
"postinstall": "husky install",
"prepare": "husky install",
"lint": "eslint 'src/**/*.{ts,tsx,js,jsx}'",
"lint_fix": "eslint 'src/**/*.{ts,tsx,js,jsx}' --fix"
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown",
"*.js": "eslint --cache --fix",
"*.{js,css,md}": "prettier --write"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@commitlint/cli": "^13.1.0",
"@commitlint/config-conventional": "^13.1.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.24.0",
"eslint-plugin-jest": "^24.4.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.1.0",
"eslint-plugin-react": "^7.24.0",
"husky": "^7.0.0",
"lint-staged": "^11.1.2",
"prettier": "2.3.2",
"release-it": "^14.11.5"
},
"proxy": "http://localhost:4000",
"description": "a query example",
"main": "index.js",
"repository": "[email protected]:anjing0524/query-template.git",
"author": "qingtu",
"license": "MIT"
}