This repository has been archived by the owner on Jan 2, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 24
/
package.json
60 lines (60 loc) · 1.83 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
{
"name": "scholarx-frontend",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"start": "webpack-dev-server --mode development",
"build": "webpack --mode production",
"lint": "eslint --ext .js,.jsx,.ts,.tsx src --color",
"lint-fix": "eslint --ext .js,.jsx,.ts,.tsx src --color --fix",
"prepare": "husky install"
},
"license": "Apache-2.0",
"devDependencies": {
"@babel/cli": "^7.17.10",
"@babel/core": "^7.10.5",
"@babel/plugin-transform-typescript": "^7.11.0",
"@babel/preset-env": "^7.10.4",
"@babel/preset-react": "^7.10.4",
"@babel/preset-typescript": "^7.10.4",
"@types/node": "^14.0.27",
"@types/react": "^16.9.43",
"@types/react-dom": "^16.9.8",
"@types/react-highlight-words": "^0.16.4",
"@types/react-router-dom": "^5.1.5",
"@typescript-eslint/eslint-plugin": "^3.7.1",
"@typescript-eslint/parser": "^3.7.1",
"babel-loader": "^8.1.0",
"css-loader": "^4.0.0",
"eslint": "^7.5.0",
"eslint-config-prettier": "^6.11.0",
"eslint-import-resolver-typescript": "^2.4.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.28.0",
"file-loader": "^6.0.0",
"html-webpack-plugin": "^4.5.1",
"husky": "^6.0.0",
"less-loader": "^6.2.0",
"lint-staged": "^10.5.4",
"prettier": "^2.0.5",
"react-hot-loader": "^4.12.21",
"style-loader": "^1.2.1",
"typescript": "^3.9.7",
"webpack": "^4.44.0",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.0"
},
"dependencies": {
"antd": "^4.18.0",
"axios": "^0.27.2",
"javascript-time-ago": "^2.3.10",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-highlight-words": "^0.18.0",
"react-router-dom": "^5.2.0"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": "eslint --cache --fix"
}
}