@stanlemon/webdev 0.2.69 → 0.2.71
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +3 -1
- package/jest.config.js +1 -3
- package/package.json +25 -23
package/README.md
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
|
|
5
5
|
This repository contains all of my usual environment setup for babel, webpack and jest for developing React apps. I got tired of copying and pasting the same config files everywhere, so I put this together.
|
|
6
6
|
|
|
7
|
-
To get started,
|
|
7
|
+
To get started, create these files:
|
|
8
8
|
|
|
9
9
|
package.json
|
|
10
10
|
```json
|
|
@@ -44,4 +44,6 @@ export { default } from "@stanlemon/webdev/jest.config.js";
|
|
|
44
44
|
|
|
45
45
|
Then run `npm install` and start coding!
|
|
46
46
|
|
|
47
|
+
If you need the old full-stack starter app, use the historical snapshot at [deprecate-2026-03-app-template-hello-world-servers](https://github.com/stanlemon/javascript/tree/deprecate-2026-03-app-template-hello-world-servers/apps/template).
|
|
48
|
+
|
|
47
49
|
_Eventually I'll add some CLI tooling to streamline this further._
|
package/jest.config.js
CHANGED
|
@@ -13,10 +13,8 @@ const esModules = [
|
|
|
13
13
|
"lowdb",
|
|
14
14
|
"steno", // Used by lowdb
|
|
15
15
|
"lodash-es",
|
|
16
|
-
"wouter",
|
|
16
|
+
"wouter",
|
|
17
17
|
"@stanlemon/webdev",
|
|
18
|
-
"@stanlemon/server",
|
|
19
|
-
"@stanlemon/server-with-auth",
|
|
20
18
|
].join("|");
|
|
21
19
|
|
|
22
20
|
export default {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@stanlemon/webdev",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.71",
|
|
4
4
|
"description": "My typical web development setup, but without all the copy and paste.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"webpack",
|
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
"author": "Stan Lemon <stanlemon@users.noreply.github.com>",
|
|
12
12
|
"license": "MIT",
|
|
13
13
|
"engines": {
|
|
14
|
-
"node": ">=
|
|
14
|
+
"node": ">=24.14.1"
|
|
15
15
|
},
|
|
16
16
|
"type": "module",
|
|
17
17
|
"scripts": {
|
|
@@ -22,44 +22,46 @@
|
|
|
22
22
|
"tsc": "tsc"
|
|
23
23
|
},
|
|
24
24
|
"dependencies": {
|
|
25
|
-
"@babel/cli": "^7.28.
|
|
26
|
-
"@babel/core": "^7.
|
|
27
|
-
"@babel/plugin-transform-private-property-in-object": "^7.
|
|
28
|
-
"@babel/preset-env": "^7.
|
|
25
|
+
"@babel/cli": "^7.28.6",
|
|
26
|
+
"@babel/core": "^7.29.0",
|
|
27
|
+
"@babel/plugin-transform-private-property-in-object": "^7.28.6",
|
|
28
|
+
"@babel/preset-env": "^7.29.2",
|
|
29
29
|
"@babel/preset-react": "^7.28.5",
|
|
30
30
|
"@babel/preset-typescript": "^7.28.5",
|
|
31
31
|
"@peculiar/webcrypto": "^1.5.0",
|
|
32
32
|
"@stanlemon/eslint-config": "*",
|
|
33
33
|
"@testing-library/jest-dom": "^6.9.1",
|
|
34
|
-
"babel-jest": "^30.
|
|
35
|
-
"babel-loader": "^10.
|
|
36
|
-
"css-loader": "^7.1.
|
|
37
|
-
"dotenv": "^17.
|
|
38
|
-
"html-webpack-plugin": "^5.6.
|
|
34
|
+
"babel-jest": "^30.3.0",
|
|
35
|
+
"babel-loader": "^10.1.1",
|
|
36
|
+
"css-loader": "^7.1.4",
|
|
37
|
+
"dotenv": "^17.3.1",
|
|
38
|
+
"html-webpack-plugin": "^5.6.6",
|
|
39
39
|
"identity-obj-proxy": "^3.0.0",
|
|
40
|
-
"jest": "^30.
|
|
41
|
-
"jest-environment-jsdom": "^30.
|
|
42
|
-
"less": "^4.
|
|
43
|
-
"less-loader": "^12.3.
|
|
40
|
+
"jest": "^30.3.0",
|
|
41
|
+
"jest-environment-jsdom": "^30.3.0",
|
|
42
|
+
"less": "^4.6.4",
|
|
43
|
+
"less-loader": "^12.3.2",
|
|
44
44
|
"react-refresh": "^0.18.0",
|
|
45
45
|
"style-loader": "^4.0.0",
|
|
46
46
|
"typescript": "^5.9.3",
|
|
47
|
-
"webpack": "^5.
|
|
48
|
-
"webpack-bundle-analyzer": "^5.
|
|
49
|
-
"webpack-cli": "^
|
|
50
|
-
"webpack-dev-server": "^5.2.
|
|
47
|
+
"webpack": "^5.105.4",
|
|
48
|
+
"webpack-bundle-analyzer": "^5.3.0",
|
|
49
|
+
"webpack-cli": "^7.0.2",
|
|
50
|
+
"webpack-dev-server": "^5.2.3"
|
|
51
51
|
},
|
|
52
52
|
"devDependencies": {
|
|
53
|
+
"@types/aria-query": "^5.0.4",
|
|
53
54
|
"@types/jest": "30.0.0",
|
|
54
|
-
"@types/react": "19.2.
|
|
55
|
+
"@types/react": "19.2.14",
|
|
55
56
|
"@types/react-dom": "19.2.3",
|
|
56
57
|
"@types/webpack": "5.28.5",
|
|
57
58
|
"@types/webpack-env": "1.18.8",
|
|
58
|
-
"react": "19.2.
|
|
59
|
-
"react-dom": "19.2.
|
|
59
|
+
"react": "19.2.4",
|
|
60
|
+
"react-dom": "19.2.4",
|
|
61
|
+
"uuid": "^8.3.2"
|
|
60
62
|
},
|
|
61
63
|
"peerDependencies": {
|
|
62
64
|
"react": ">=18.0.0",
|
|
63
65
|
"react-dom": ">=19.1.0"
|
|
64
66
|
}
|
|
65
|
-
}
|
|
67
|
+
}
|