-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
97 lines (97 loc) · 3.06 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
{
"name": "react-template",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "cross-env NODE_ENV=development webpack serve --config build/webpack.dev.js",
"build": "cross-env NODE_ENV=production webpack --config build/webpack.prod.js",
"clean:cache": "rimraf .temp_cache rimraf node_modules && pnpm install",
"format": "prettier --write \"**/*.{ts,tsx,js,jsx,cjs,mjs,json}\"",
"format:ci": "prettier --list-different \"**/*.{ts,tsx,js,jsx}\"",
"lint": "eslint \"**/*.{ts,tsx,js,jsx}\" --fix",
"lint:ci": "eslint \"**/*.{ts,js}\"",
"lint:style": "stylelint --config .stylelintrc.js src/**/*.{less,css,scss}",
"prepare": "husky install",
"commit": "git-cz",
"analyz": "cross-env NODE_ENV=production ANALYZE_BUNDLE=true webpack --config build/webpack.prod.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"config": {
"commitizen": {
"path": "node_modules/cz-customizable"
}
},
"lint-staged": {
"*.{ts,tsx,js}": [
"eslint --config .eslintrc.js"
],
"*.{css,less,scss}": [
"stylelint --config .stylelintrc.js"
],
"*.{ts,tsx,js,json,html,yml,css,less,scss,md}": [
"prettier --write"
]
},
"dependencies": {
"react": "^18.3.1",
"react-dom": "^18.3.1"
},
"devDependencies": {
"@babel/core": "^7.24.7",
"@babel/preset-env": "^7.24.7",
"@babel/preset-react": "^7.24.7",
"@babel/preset-typescript": "^7.24.7",
"@commitlint/cli": "19.2.0",
"@commitlint/config-conventional": "19.1.0",
"@pmmmwh/react-refresh-webpack-plugin": "^0.5.15",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@typescript-eslint/eslint-plugin": "6.4.0",
"@typescript-eslint/parser": "7.2.0",
"babel-loader": "^9.1.3",
"commitizen": "4.3.0",
"commitlint-config-cz": "0.13.3",
"cross-env": "^7.0.3",
"css-loader": "^7.1.2",
"css-minimizer-webpack-plugin": "^7.0.0",
"cz-conventional-changelog": "3.3.0",
"cz-customizable": "7.0.0",
"eslint": "8.0.1",
"eslint-config-standard-with-typescript": "^43.0.1",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-react": "^7.34.3",
"glob": "^11.0.0",
"html-webpack-plugin": "^5.6.0",
"husky": "9.0.11",
"install": "^0.13.0",
"less": "^4.2.0",
"less-loader": "^12.2.0",
"lint-staged": "15.2.2",
"mini-css-extract-plugin": "^2.9.0",
"postcss": "^8.4.39",
"postcss-loader": "^8.1.1",
"postcss-preset-env": "^9.6.0",
"prettier": "^3.3.2",
"purgecss-webpack-plugin": "^6.0.0",
"react-refresh": "^0.14.2",
"rimraf": "^5.0.9",
"style-loader": "^4.0.0",
"stylelint": "16.2.1",
"stylelint-config-standard": "36.0.0",
"stylelint-declaration-block-no-ignored-properties": "2.8.0",
"thread-loader": "^4.0.2",
"typescript": "4.9.4",
"webpack": "^5.92.1",
"webpack-bundle-analyzer": "^4.10.2",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.0.4",
"webpack-merge": "^6.0.1",
"webpackbar": "^6.0.1"
},
"engines": {
"node": ">=20.6.1"
}
}