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
|
{
"private": true,
"name": "site",
"version": "0.0.1",
"description": "The toplevel nj3.xyz website.",
"main": "webpack.config.js",
"scripts": {
"build": "webpack --mode=development",
"build_release": "webpack --mode=production"
},
"repository": {
"type": "git",
"url": "git@git.nj3.xyz:site"
},
"author": "nj3ahxac",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.26.8",
"@babel/preset-env": "^7.26.8",
"@babel/preset-react": "^7.26.3",
"babel-loader": "^9.2.1",
"css-loader": "^7.1.2",
"html-webpack-plugin": "^5.6.3",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-router-dom": "^7.1.5",
"style-loader": "^4.0.0",
"webpack": "^5.98.0",
"webpack-cli": "^6.0.1"
},
"dependencies": {
"@fontsource/pitagon-sans-mono": "^5.1.0"
}
}
|