-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 2.12 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
{
"name": "react-proto-lite",
"version": "1.2.0",
"description": "React TypeScript Boilerplate - Lite",
"author": "Max L Stop&Go",
"license": "ISC",
"sideEffects": ["*.css", "*.scss"],
"scripts": {
"clean": "rimraf dist",
"start": "cross-env NODE_ENV=development rspack serve --mode development",
"build": "npm run clean && cross-env NODE_ENV=production rspack --mode production",
"build:report": "npm run build --withReport",
"lint": "npx @biomejs/biome check . && stylelint \"**/*.{css,scss}\"",
"lint:fix": "npx @biomejs/biome check --write && stylelint --fix \"**/*.{css,scss}\"",
"add-comp": "node scripts/add-comp.js"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@prefresh/core": "1.5.2",
"@prefresh/utils": "1.2.0",
"@rspack/cli": "1.0.14",
"@rspack/core": "1.0.14",
"@rspack/plugin-preact-refresh": "1.0.1",
"@rspack/plugin-react-refresh": "1.0.0",
"@svgr/webpack": "8.1.0",
"@swc/core": "1.7.39",
"@types/node": "22.7.9",
"@types/react": "18.3.12",
"@types/react-dom": "18.3.1",
"@types/react-router-dom": "5.3.3",
"@types/webpack-bundle-analyzer": "4.7.0",
"classnames": "2.5.1",
"cross-env": "7.0.3",
"css-hot-loader": "1.4.4",
"css-loader": "7.1.2",
"csso-webpack-plugin": "2.0.0-beta.3",
"fork-ts-checker-webpack-plugin": "9.0.2",
"null-loader": "4.0.1",
"postcss": "8.4.47",
"postcss-scss": "4.0.9",
"react-refresh": "0.14.2",
"rimraf": "6.0.1",
"sass": "1.80.4",
"sass-loader": "16.0.2",
"stylelint": "16.10.0",
"stylelint-config-clean-order": "6.1.0",
"stylelint-config-standard-scss": "13.1.0",
"ts-node": "10.9.2",
"typescript": "5.6.3",
"typescript-plugin-css-modules": "5.1.0",
"webpack-bundle-analyzer": "4.10.2",
"webpack-dev-middleware": "7.4.2",
"webpack-hot-middleware": "2.26.1"
},
"dependencies": {
"@reduxjs/toolkit": "2.3.0",
"preact": "10.24.3",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-error-boundary": "4.1.2",
"react-helmet-async": "2.0.5",
"react-redux": "9.1.2",
"react-router-dom": "6.27.0"
}
}