This repository has been archived by the owner on Jan 1, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
98 lines (98 loc) · 2.75 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "react-netease-player",
"main": "index.js",
"version": "1.0.5",
"scripts": {
"start": "webpack serve --mode=development --config webpack-config/webpack.config.babel.js",
"build": "webpack --mode=production --config webpack-config/webpack.config.babel.js",
"type-check": "tsc --watch",
"lint": "eslint src --ext .js,.jsx,.ts,.tsx --fix"
},
"babel": {
"presets": [
"@babel/preset-env",
[
"@babel/preset-react",
{
"runtime": "automatic"
}
],
"@babel/preset-typescript"
],
"plugins": [
"@babel/plugin-transform-runtime"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx}": [
"eslint --fix"
],
"src/**/*.css": [
"prettier --write",
"stylelint --config stylelint.config.js --fix"
]
},
"dependencies": {
"@apollo/client": "^3.3.20",
"@blueprintjs/core": "^3.26.0",
"@emotion/react": "^11.7.1",
"@emotion/styled": "^11.6.0",
"@mui/material": "^5.2.7",
"axios": "^0.19.2",
"classnames": "^2.2.6",
"graphql": "^15.5.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-router-dom": "^5.1.2"
},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.9.0",
"@babel/plugin-transform-runtime": "^7.9.0",
"@babel/preset-env": "^7.9.5",
"@babel/preset-react": "^7.9.4",
"@babel/preset-typescript": "^7.9.0",
"@babel/register": "^7.9.0",
"@types/classnames": "^2.2.10",
"@types/react": "^16.9.55",
"@types/react-dom": "^16.9.9",
"@types/react-router-dom": "^5.1.4",
"@types/webpack": "^4.41.24",
"@typescript-eslint/eslint-plugin": "^4.6.0",
"@typescript-eslint/parser": "^4.6.0",
"babel-loader": "^8.1.0",
"babel-plugin-import": "^1.13.0",
"clean-webpack-plugin": "^3.0.0",
"conventional-changelog-cli": "^2.0.34",
"css-loader": "^3.5.2",
"css-minimizer-webpack-plugin": "^1.1.5",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.20.6",
"html-webpack-plugin": "^5.0.0-alpha.10",
"http-proxy-middleware": "^2.0.1",
"husky": "^4.2.5",
"lint-staged": "^10.2.13",
"mini-css-extract-plugin": "^1.1.0",
"postcss-loader": "^3.0.0",
"postcss-nested": "^4.2.1",
"prettier": "^2.1.0",
"style-loader": "^1.2.1",
"stylelint": "^13.7.2",
"stylelint-config-standard": "^20.0.0",
"terser-webpack-plugin": "^5.0.0",
"typescript": "^4.0.5",
"url-loader": "^4.1.0",
"webpack": "^5.1.3",
"webpack-bundle-analyzer": "^3.7.0",
"webpack-cli": "^4.0.0",
"webpack-dev-server": "^3.11.0",
"webpack-merge": "^5.2.0"
}
}