-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
86 lines (86 loc) · 2.69 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": "react-webpack-typescript-starter",
"version": "0.1.0",
"description": "Starter kit for React, Webpack (with Hot Module Replacement), Typescript.",
"keywords": [
"react",
"webpack",
"typescript",
"sass",
"hmr",
"starter",
"boilerplate"
],
"author": "Viktor Persson",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/vikpe/react-webpack-typescript-starter.git"
},
"sideEffects": "*.scss",
"bugs": {
"url": "https://github.com/vikpe/react-webpack-typescript-starter/issues"
},
"homepage": "https://github.com/vikpe/react-webpack-typescript-starter",
"scripts": {
"preinstall": "npx only-allow pnpm",
"build": "pnpm clean-dist && webpack --config=configs/webpack/prod.js",
"clean-dist": "rimraf dist/*",
"lint": "eslint './src/**/*.{js,ts,tsx}' --quiet",
"start": "pnpm start-dev",
"start-dev": "webpack serve --config=configs/webpack/dev.js --port 3001",
"start-prod": "pnpm build && node express.js",
"test": "jest --coverage --watchAll --config=configs/jest.json"
},
"devDependencies": {
"@swc/core": "^1.9.3",
"@types/jest": "^29.5.14",
"@types/node": "^22.10.1",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@types/react-router-dom": "^5.3.3",
"@typescript-eslint/eslint-plugin": "^8.16.0",
"@typescript-eslint/parser": "^8.16.0",
"browserslist": "^4.24.2",
"css-loader": "^7.1.2",
"css-minimizer-webpack-plugin": "^7.0.0",
"eslint": "^9.16.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react": "^7.37.2",
"express": "^5.0.1",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^5.6.3",
"jest": "^29.7.0",
"lightningcss": "^1.28.2",
"prettier": "^3.4.1",
"rimraf": "^6.0.1",
"sass": "^1.81.0",
"sass-loader": "^16.0.3",
"sharp": "^0.33.5",
"style-loader": "^4.0.0",
"swc-loader": "^0.2.6",
"typescript": "^5.7.2",
"typescript-plugin-css-modules": "^5.1.0",
"webpack": "^5.96.1",
"webpack-bundle-analyzer": "^4.10.2",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.1.0",
"webpack-merge": "^6.0.1"
},
"dependencies": {
"@react-hook/window-size": "^3.1.1",
"@tanstack/react-query": "^5.62.0",
"copy-webpack-plugin": "^12.0.2",
"i18next": "^23.16.8",
"i18next-browser-languagedetector": "^8.0.0",
"i18next-resources-to-backend": "^1.2.1",
"mini-css-extract-plugin": "^2.9.2",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-i18next": "^15.1.3",
"react-router-dom": "^6.28.0",
"regenerator-runtime": "^0.14.1",
"workbox-webpack-plugin": "^7.3.0"
}
}