-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathpackage.json
More file actions
92 lines (92 loc) · 3.7 KB
/
Copy pathpackage.json
File metadata and controls
92 lines (92 loc) · 3.7 KB
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",
"static-analysis": "npm run lint && npm run format:check && npm run ts-check && npm run spellcheck",
"verify": "npm run static-analysis && 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,md}\"",
"list-outdated-dependencies": "npm-check-updates --format repo,group,dep --peer --cooldown 1",
"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.2.5",
"react-dom": "19.2.5"
},
"devDependencies": {
"@babel/core": "7.29.0",
"@babel/preset-env": "7.29.2",
"@babel/preset-react": "7.28.5",
"@babel/preset-typescript": "7.28.5",
"@jest/globals": "30.3.0",
"@pmmmwh/react-refresh-webpack-plugin": "0.6.2",
"@testing-library/dom": "10.4.1",
"@testing-library/jest-dom": "6.9.1",
"@testing-library/react": "16.3.2",
"@testing-library/user-event": "14.6.1",
"@types/node": "24.12.2",
"@types/react": "19.2.14",
"@types/react-dom": "19.2.3",
"@typescript-eslint/eslint-plugin": "8.59.2",
"@typescript-eslint/parser": "8.59.2",
"babel-loader": "10.1.1",
"copy-webpack-plugin": "14.0.0",
"core-js": "3.49.0",
"cspell": "10.0.0",
"css-loader": "7.1.4",
"css-minimizer-webpack-plugin": "8.0.0",
"eslint": "9.39.2",
"eslint-import-resolver-typescript": "4.4.4",
"eslint-plugin-import-x": "4.16.2",
"eslint-plugin-jest": "29.15.2",
"eslint-plugin-jsx-a11y": "6.10.2",
"eslint-plugin-react": "7.37.5",
"eslint-plugin-react-hooks": "7.1.1",
"eslint-plugin-testing-library": "7.16.2",
"fork-ts-checker-webpack-plugin": "9.1.0",
"globals": "17.6.0",
"html-minimizer-webpack-plugin": "6.0.0",
"html-webpack-plugin": "5.6.7",
"husky": "9.1.7",
"identity-obj-proxy": "3.0.0",
"jest": "30.3.0",
"jest-environment-jsdom": "30.3.0",
"license-webpack-plugin": "4.0.2",
"lint-staged": "16.4.0",
"mini-css-extract-plugin": "2.10.2",
"mini-svg-data-uri": "1.4.4",
"npm-check-updates": "22.1.0",
"postcss": "8.5.14",
"postcss-loader": "8.2.1",
"postcss-preset-env": "11.2.1",
"prettier": "3.8.3",
"react-refresh": "0.18.0",
"rimraf": "6.1.3",
"style-loader": "4.0.0",
"typescript": "6.0.3",
"webpack": "5.106.2",
"webpack-bundle-analyzer": "5.3.0",
"webpack-cli": "7.0.2",
"webpack-dev-server": "5.2.3"
},
"engines": {
"node": ">=24.12.0"
}
}