-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
94 lines (94 loc) · 3.22 KB
/
package.json
File metadata and controls
94 lines (94 loc) · 3.22 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
93
94
{
"name": "react-boilerplate",
"version": "0.0.0",
"description": "A boilerplate for a React app with TypeScript, ESLint, and Jest, bundled by Webpack with swc.",
"scripts": {
"clean": "rm -rf node_modules && pnpm i",
"css": "hcm './**/*.module.{css,scss,less}' --localsConvention=camelCase",
"preinstall": "npx only-allow pnpm",
"prebuild": "rm -rf build && pnpm css",
"build": "cross-env pnpm prebuild && webpack --config ./webpack.config/index.ts --env mode=production --entry ./src/index.tsx",
"debug": "pnpm css --watch & FORCE_COLOR=1 pnpm script-server & cross-env webpack serve --config ./webpack.config/index.ts --env mode=development --entry ./debug/debug.tsx",
"develop": "pnpm css --watch & cross-env webpack serve --config ./webpack.config/index.ts --env mode=development --entry ./src/index.tsx",
"lint": "eslint src --env-info",
"script-server": "ts-node debug/script-server/script-server.ts --server-port=8000 --client-port=3003",
"test": "jest",
"typecheck": "tsc --diagnostics"
},
"repository": {
"type": "git",
"url": "git+https://github.com/drumnickydrum/react-boilerplate.git"
},
"keywords": [
"react",
"boilerplate"
],
"author": "Nick Carbone",
"license": "MIT",
"bugs": {
"url": "https://github.com/drumnickydrum/react-boilerplate/issues"
},
"homepage": "https://github.com/drumnickydrum/react-boilerplate#readme",
"devDependencies": {
"@pmmmwh/react-refresh-webpack-plugin": "^0.5.11",
"@svgr/webpack": "^8.1.0",
"@swc/cli": "^0.4.0",
"@swc/core": "^1.7.36",
"@swc/jest": "^0.2.36",
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.6.2",
"@testing-library/react": "^16.0.1",
"@testing-library/user-event": "^14.5.2",
"@types/dotenv-webpack": "^7.0.7",
"@types/jest": "^29.5.13",
"@types/node": "^22.7.6",
"@types/react": "^18.3.11",
"@types/react-dom": "^18.3.1",
"@types/webpack": "^5.28.5",
"@types/ws": "^8.5.12",
"@types/yargs": "^17.0.33",
"@typescript-eslint/eslint-plugin": "^8.10.0",
"@typescript-eslint/parser": "^8.10.0",
"autoprefixer": "^10.4.20",
"clean-webpack-plugin": "^4.0.0",
"cross-env": "^7.0.3",
"css-loader": "^7.1.2",
"dotenv-webpack": "^8.1.0",
"eslint": "^9.13.0",
"eslint-plugin-react-hooks": "^5.0.0",
"glob": "^11.0.0",
"happy-css-modules": "^3.1.1",
"html-webpack-plugin": "^5.6.2",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jest-mock": "^29.7.0",
"mini-css-extract-plugin": "^2.9.1",
"postcss": "^8.4.47",
"postcss-loader": "^8.1.1",
"react-refresh": "^0.14.2",
"regenerator-runtime": "^0.14.1",
"style-loader": "^4.0.0",
"swc-loader": "^0.2.6",
"tailwindcss": "^3.4.14",
"ts-node": "^10.9.2",
"typescript": "^5.6.3",
"webpack": "^5.95.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.1.0",
"webpack-merge": "^6.0.1",
"webpackbar": "^6.0.1"
},
"dependencies": {
"ansi-to-react": "^6.1.6",
"clsx": "^2.1.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-use-websocket": "^4.9.0",
"ws": "^8.18.0",
"yargs": "^17.7.2",
"zod": "^3.23.8"
},
"engines": {
"node": ">=22.9.0"
}
}