-
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.34",
"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.12.0"
},
"type": "module",
"scripts": {
"build": "WEBDEV_ENTRY=./example.tsx webpack build",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"test": "jest",
"tsc": "tsc"
},
"dependencies": {
"@babel/cli": "^7.27.0",
"@babel/core": "^7.26.10",
"@babel/plugin-transform-private-property-in-object": "^7.25.9",
"@babel/preset-env": "^7.26.9",
"@babel/preset-react": "^7.26.3",
"@babel/preset-typescript": "^7.27.0",
"@peculiar/webcrypto": "^1.5.0",
"@stanlemon/eslint-config": "*",
"@testing-library/jest-dom": "^6.6.3",
"babel-jest": "^29.7.0",
"babel-loader": "^10.0.0",
"css-loader": "^7.1.2",
"dotenv": "^16.4.7",
"html-webpack-plugin": "^5.6.3",
"identity-obj-proxy": "^3.0.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"less": "^4.2.2",
"less-loader": "^12.2.0",
"react-refresh": "^0.16.0",
"style-loader": "^4.0.0",
"typescript": "^5.8.2",
"webpack": "^5.98.0",
"webpack-bundle-analyzer": "^4.10.2",
"webpack-cli": "^6.0.1",
"webpack-dev-server": "^5.2.0"
},
"devDependencies": {
"@types/jest": "^29.5.14",
"@types/react": "^19.0.12",
"@types/react-dom": "^19.0.4",
"@types/webpack": "^5.28.5",
"@types/webpack-env": "^1.18.8",
"react": "^19.0.0",
"react-dom": "^19.0.0"
},
"peerDependencies": {
"react": ">=18.0.0",
"react-dom": ">=18.0.0"
}
}