-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
86 lines (86 loc) · 2.79 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
{
"name": "l-project-react",
"version": "2.0.0",
"description": "",
"main": "src/main.ts",
"scripts": {
"dev": "cross-env NODE_ENV=development webpack server",
"build": "cross-env NODE_ENV=production webpack",
"test": "cross-env NODE_ENV=test jest --watchAll",
"analyze": "cross-env IS_ANALYZE=true npm run build",
"lint": "eslint . --ext .js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix --ignore-path .gitignore",
"lint:style": "stylelint \"**/*.{css,less}\" --fix --ignore-path .gitignore",
"format": "prettier --write . --ignore-path .gitignore"
},
"keywords": [],
"author": "Viho Lei",
"license": "MIT",
"devDependencies": {
"@babel/plugin-proposal-decorators": "^7.22.7",
"@babel/preset-env": "^7.22.7",
"@babel/preset-react": "^7.22.5",
"@babel/preset-typescript": "^7.22.5",
"@commitlint/cli": "^17.6.6",
"@commitlint/config-conventional": "^17.6.6",
"@pmmmwh/react-refresh-webpack-plugin": "^0.5.10",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^14.0.0",
"@types/jest": "^29.5.2",
"@types/lodash-es": "^4.17.7",
"@types/react": "^18.2.14",
"@types/react-dom": "^18.2.6",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"babel-loader": "^9.1.3",
"copy-webpack-plugin": "^11.0.0",
"cross-env": "^7.0.3",
"css-loader": "^6.8.1",
"css-minimizer-webpack-plugin": "^5.0.1",
"dotenv": "^16.3.1",
"eslint": "^8.44.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-webpack-plugin": "^4.0.1",
"fork-ts-checker-webpack-plugin": "^8.0.0",
"html-webpack-plugin": "^5.5.3",
"husky": "^8.0.3",
"jest": "^29.6.1",
"jest-environment-jsdom": "^29.6.1",
"jest-transform-stub": "^2.0.0",
"less-loader": "^11.1.3",
"lint-staged": "^13.2.3",
"mini-css-extract-plugin": "^2.7.6",
"postcss-less": "^6.0.0",
"postcss-loader": "^7.3.3",
"postcss-preset-env": "^9.0.0",
"prettier": "^2.8.8",
"react-refresh": "^0.14.0",
"style-loader": "^3.3.3",
"stylelint": "^15.10.1",
"stylelint-config-standard": "^34.0.0",
"stylelint-prettier": "^3.0.0",
"terser-webpack-plugin": "^5.3.9",
"thread-loader": "^4.0.2",
"ts-loader": "^9.4.4",
"typescript": "^5.1.6",
"webpack": "^5.88.1",
"webpack-bundle-analyzer": "^4.9.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^4.15.1"
},
"dependencies": {
"core-js": "^3.31.1",
"echarts": "^5.4.2",
"lodash-es": "^4.17.21",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"lint-staged": {
"*.{js,jsx,cjs,mjs,ts,tsx,cts,mts}": "eslint --fix",
"*.{css,less}": "stylelint --fix",
"*.{md,json}": "prettier --write"
},
"corrected-package": [
"react"
]
}