-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.74 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.74 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
{
"name": "@stanlemon/webdev",
"version": "0.2.50",
"description": "My typical web development setup, but without all the copy and paste.",
"keywords": [
"webpack",
"babel",
"jest",
"react"
],
"author": "Stan Lemon <stanlemon@users.noreply.github.com>",
"license": "MIT",
"engines": {
"node": ">=22.15.1"
},
"type": "module",
"scripts": {
"build": "WEBDEV_ENTRY=./example.tsx webpack build",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"test": "jest",
"tsc": "tsc"
},
"dependencies": {
"@babel/cli": "^7.28.0",
"@babel/core": "^7.28.0",
"@babel/plugin-transform-private-property-in-object": "^7.27.1",
"@babel/preset-env": "^7.28.0",
"@babel/preset-react": "^7.27.1",
"@babel/preset-typescript": "^7.27.1",
"@peculiar/webcrypto": "^1.5.0",
"@stanlemon/eslint-config": "*",
"@testing-library/jest-dom": "^6.6.4",
"babel-jest": "^30.0.5",
"babel-loader": "^10.0.0",
"css-loader": "^7.1.2",
"dotenv": "^16.6.1",
"html-webpack-plugin": "^5.6.3",
"identity-obj-proxy": "^3.0.0",
"jest": "^30.0.5",
"jest-environment-jsdom": "^30.0.5",
"less": "^4.4.0",
"less-loader": "^12.3.0",
"react-refresh": "^0.17.0",
"style-loader": "^4.0.0",
"typescript": "^5.8.3",
"webpack": "^5.100.2",
"webpack-bundle-analyzer": "^4.10.2",
"webpack-cli": "^6.0.1",
"webpack-dev-server": "^5.2.2"
},
"devDependencies": {
"@types/jest": "^30.0.0",
"@types/react": "^19.1.8",
"@types/react-dom": "^19.1.6",
"@types/webpack": "^5.28.5",
"@types/webpack-env": "^1.18.8",
"react": "^19.1.0",
"react-dom": "^19.1.0"
},
"peerDependencies": {
"react": ">=18.0.0",
"react-dom": ">=19.1.0"
}
}