-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
119 lines (119 loc) · 3.85 KB
/
package.json
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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
{
"name": "siegel",
"version": "0.15.8",
"homepage": "https://siegel-qe3q.onrender.com",
"url": "https://github.com/CyberCookie/siegel",
"bugs": "https://github.com/CyberCookie/siegel/issues",
"description": "Web application development ecosystem",
"keywords": [
"web",
"web application",
"create app",
"cra",
"create react app",
"typescript",
"react",
"reactjs",
"node",
"nodejs",
"webpack",
"base",
"core",
"platform",
"skeleton",
"metaframework",
"ecosystem",
"siegel"
],
"license": "MIT",
"publishConfig": {
"access": "public"
},
"engineStrict": true,
"engines": {
"node": ">= 18",
"npm": ">= 7"
},
"config": {
"boot": "node --no-warnings=ExperimentalWarning --loader ts-node/esm demo_app/server/index.js"
},
"files": [
"demo_app",
"demo_app_minimal",
"lib",
"global.d.ts",
"tsconfig.json",
"eslint.config.js"
],
"type": "module",
"types": "lib/core/index.d.ts",
"main": "lib/core/index.js",
"bin": "lib/bin/index.js",
"scripts": {
"__transpile": "node --no-warnings=ExperimentalWarning --experimental-specifier-resolution=node --loader ts-node/esm prepublish.ts",
"__validate": "npm run validate && npx tsc -p demo_app && npx jest",
"__update": "rm -rf ./node_modules ./package-lock.json && npm i",
"prepublishOnly": "npm run __validate && npm run __transpile",
"start": "$npm_package_config_boot -b -s",
"start_mini": "node --no-warnings=ExperimentalWarning --loader ts-node/esm bin run --server demo_app_minimal/server.ts --client demo_app_minimal/app.ts",
"build": "$npm_package_config_boot -b -p",
"build_serv": "$npm_package_config_boot -b -s -p",
"serv": "$npm_package_config_boot -s -p",
"deploy": "npm ci --no-audit --no-fund && npm run build && npm run serv",
"validate": "npx eslint . && npx tsc -p ."
},
"dependencies": {
"@eslint/js": "9.18.0",
"@pmmmwh/react-refresh-webpack-plugin": "0.5.15",
"autoprefixer": "10.4.20",
"compression-webpack-plugin": "11.1.0",
"copy-webpack-plugin": "12.0.2",
"css-loader": "7.1.2",
"eslint-plugin-react": "7.37.4",
"eslint-webpack-plugin": "4.2.0",
"express": "4.21.2",
"html-webpack-plugin": "5.6.3",
"mime": "4.0.6",
"mini-css-extract-plugin": "2.9.2",
"postcss-loader": "8.1.1",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-refresh": "0.16.0",
"sass": "1.83.4",
"sass-loader": "16.0.4",
"sass-resources-loader": "2.2.5",
"style-loader": "4.0.0",
"svg2ttf": "6.0.3",
"svgicons2svgfont": "15.0.0",
"ts-node": "10.9.2",
"ttf2woff": "3.0.0",
"ttf2woff2": "6.0.1",
"typescript-eslint": "8.20.0",
"typescript-plugin-css-modules": "5.1.0",
"webpack": "^5.97.1",
"webpack-dev-middleware": "7.4.2",
"webpack-hot-middleware": "2.26.1",
"worker-loader": "3.0.8"
},
"devDependencies": {
"@types/jest": "29.5.13",
"jest": "29.7.0",
"ts-jest": "29.2.5",
"type-fest": "^4.26.1"
},
"peerDependencies": {
"@types/express": "4.17.21",
"@types/node": "20.16.9",
"@types/react": "18.3.12",
"@types/react-dom": "18.3.1",
"@types/svg2ttf": "5.0.3",
"@types/svgicons2svgfont": "14.0.0",
"@types/ttf2woff": "2.0.4",
"@types/ttf2woff2": "6.0.0",
"@types/webpack-env": "1.18.5",
"@types/webpack-hot-middleware": "2.25.9",
"esbuild-loader": "4.2.2",
"eslint": "9.18.0",
"typescript": "5.6.3"
}
}