-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
115 lines (115 loc) · 3.52 KB
/
package.json
File metadata and controls
115 lines (115 loc) · 3.52 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
{
"name": "kong-react-admin",
"version": "0.1.0",
"private": true,
"author": {
"name": "Luong Phung",
"email": "luonguit@gmail.com",
"url": "https://luong-phung.kongd.io"
},
"scripts": {
"clean": "rimraf ./build",
"analyze": "yarn clean && yarn build -- --stats && webpack-bundle-analyzer \"./build/bundle-stats.json\"",
"start": "react-app-rewired start",
"dev": "concurrently \"yarn mock\" \"yarn start\"",
"mock": "json-server --watch \"mock/db.json\" --port 5000 --routes \"mock/routes.json\" -m ./node_modules/json-server-auth",
"build": "react-app-rewired build",
"serve": "serve -s build -l 3001",
"prettier": "prettier \"src/**/*.{ts,tsx}\"",
"prettier:fix": "prettier --write \"src/**/*.{ts,tsx}\"",
"lint": "yarn lint:ts && yarn lint:styles",
"lint:ts": "eslint \"src/**/*.{ts,tsx}\"",
"lint:ts-fix": "eslint --fix \"src/**/*.{ts,tsx}\"",
"lint:styles": "stylelint \"src/**/*.{css,less}\"",
"lint:styles-fix": "stylelint --fix \"src/**/*.{css,less}\"",
"test": "react-app-rewired test --watchAll",
"eject": "react-app-rewired eject"
},
"dependencies": {
"@ant-design/icons": "^4.6.2",
"@testing-library/jest-dom": "^5.11.4",
"@testing-library/react": "^11.1.0",
"antd": "^4.16.10",
"axios": "^0.21.1",
"classnames": "^2.3.1",
"connected-react-router": "^6.9.1",
"copy-to-clipboard": "^3.3.1",
"debounce": "^1.2.1",
"flag-icon-css": "^3.5.0",
"history": "4.10.1",
"moment": "^2.29.1",
"nprogress": "^0.2.0",
"octopus-immutable-store": "^1.0.1",
"query-string": "^7.0.1",
"rc-util": "^5.13.2",
"react": "^17.0.2",
"react-custom-scrollbars": "^4.2.1",
"react-dom": "^17.0.2",
"react-helmet-async": "^1.1.2",
"react-intl": "^5.20.6",
"react-placeholder": "^4.1.0",
"react-redux": "^7.2.4",
"react-router-dom": "^5.2.0",
"react-use": "^17.2.4",
"recharts": "^2.0.10",
"redux": "^4.1.1",
"redux-thunk": "^2.3.0",
"rxjs": "^7.3.0",
"web-vitals": "^0.2.4"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@testing-library/user-event": "^12.1.10",
"@types/debounce": "^1.2.0",
"@types/jest": "^26.0.15",
"@types/node": "^12.0.0",
"@types/nprogress": "^0.2.0",
"@types/react": "^16.9.53",
"@types/react-custom-scrollbars": "^4.0.8",
"@types/react-dom": "^16.9.8",
"@types/react-router-dom": "^5.1.8",
"@typescript-eslint/eslint-plugin": "^4.29.2",
"@typescript-eslint/parser": "^4.29.2",
"babel-plugin-import": "^1.13.0",
"concurrently": "^6.2.0",
"customize-cra": "^1.0.0",
"eslint": "^7.32.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-plugin-import": "^2.24.0",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.24.0",
"json-server": "^0.16.3",
"json-server-auth": "^2.1.0",
"less": "^3.10.3",
"less-loader": "^5.0.0",
"msw": "^0.35.0",
"prettier": "^2.3.2",
"react-app-rewired": "^2.1.5",
"react-scripts": "4.0.3",
"rimraf": "^3.0.2",
"serve": "^12.0.0",
"stylelint": "^13.13.1",
"stylelint-config-standard": "^22.0.0",
"ts-jest": "^27.0.5",
"typescript": "^4.0.3",
"webpack-bundle-analyzer": "^4.4.2"
},
"proxy": "http://localhost:5000"
}