-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathpackage.json
92 lines (92 loc) · 3.7 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
{
"name": "react-template",
"version": "1.0.0",
"description": "",
"author": "",
"scripts": {
"start": "webpack serve",
"release": "npm run verify && npm run build",
"verify": "npm run lint && npm run format:check && npm run ts-check && npm run spellcheck && npm run test",
"build": "npm run build:production",
"build:production": "npm run clean:dist && webpack --node-env production",
"build:development": "npm run clean:dist && webpack --node-env development",
"bundle-analysis": "webpack --node-env production --env showBundleAnalysis",
"autofix": "npm run lint:fix && npm run format",
"lint": "eslint --max-warnings 0",
"lint:fix": "npm run lint -- --fix",
"test": "jest --runInBand",
"ts-check": "tsc",
"format": "prettier . --write --cache --log-level warn",
"format:check": "prettier . --check --cache --log-level warn",
"spellcheck": "cspell --no-progress --dot \"**/*.{js,ts,jsx,tsx,cjs,mjs,json,html,xml,svg,css,scss,sass,md}\"",
"list-outdated-dependencies": "npm-check-updates --format repo,group --peer",
"update-dependencies": "npm run list-outdated-dependencies -- -u && npm install && npm update && npm dedupe && npm run autofix && npm run release",
"clean": "rimraf node_modules coverage dist",
"clean:dist": "rimraf dist",
"prepare": "husky"
},
"dependencies": {
"react": "^19.0.0",
"react-dom": "^19.0.0"
},
"devDependencies": {
"@babel/core": "^7.26.0",
"@babel/preset-env": "^7.26.0",
"@babel/preset-react": "^7.26.3",
"@babel/preset-typescript": "^7.26.0",
"@jest/globals": "^29.7.0",
"@pmmmwh/react-refresh-webpack-plugin": "^0.5.15",
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.1.0",
"@testing-library/user-event": "^14.5.2",
"@types/node": "^22.10.2",
"@types/react": "^19.0.2",
"@types/react-dom": "^19.0.2",
"@typescript-eslint/eslint-plugin": "^8.18.2",
"@typescript-eslint/parser": "^8.18.2",
"babel-loader": "^9.2.1",
"copy-webpack-plugin": "^12.0.2",
"core-js": "^3.39.0",
"cspell": "^8.17.1",
"css-loader": "^7.1.2",
"css-minimizer-webpack-plugin": "^7.0.0",
"eslint": "^9.17.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jest": "^28.10.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-react": "^7.37.3",
"eslint-plugin-react-hooks": "^5.1.0",
"eslint-plugin-testing-library": "^7.1.1",
"fork-ts-checker-webpack-plugin": "^9.0.2",
"globals": "^15.14.0",
"html-minimizer-webpack-plugin": "^5.0.0",
"html-webpack-plugin": "^5.6.3",
"husky": "^9.1.7",
"identity-obj-proxy": "^3.0.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"license-webpack-plugin": "^4.0.2",
"lint-staged": "^15.2.11",
"mini-css-extract-plugin": "^2.9.2",
"mini-svg-data-uri": "^1.4.4",
"npm-check-updates": "^17.1.12",
"postcss": "^8.4.49",
"postcss-loader": "^8.1.1",
"postcss-preset-env": "^10.1.3",
"prettier": "^3.4.2",
"react-refresh": "^0.16.0",
"rimraf": "^6.0.1",
"sass": "^1.83.0",
"sass-loader": "^16.0.4",
"style-loader": "^4.0.0",
"typescript": "^5.7.2",
"webpack": "^5.97.1",
"webpack-bundle-analyzer": "^4.10.2",
"webpack-cli": "^6.0.1",
"webpack-dev-server": "^5.2.0"
},
"engines": {
"node": ">=22.12.0"
}
}