2022-09-28 12:29:53 +00:00
|
|
|
{
|
|
|
|
"name": "statuspage",
|
|
|
|
"version": "0.1.0",
|
|
|
|
"private": false,
|
|
|
|
"scripts": {
|
2022-12-29 17:14:29 +00:00
|
|
|
"dev": "npx nodemon",
|
2022-11-27 20:16:28 +00:00
|
|
|
"build": "webpack build --mode=production",
|
2023-12-05 12:33:18 +00:00
|
|
|
"analyze": "cross-env analyze=true webpack build --mode=production",
|
2022-12-29 17:14:29 +00:00
|
|
|
"test": "",
|
2022-11-27 20:16:28 +00:00
|
|
|
"compile": "tsc",
|
2023-11-22 11:13:15 +00:00
|
|
|
"clear-modules": "rm -rf node_modules && rm package-lock.json && npm install",
|
2022-12-29 17:14:29 +00:00
|
|
|
"start": "node --require ts-node/register Serve.ts",
|
2022-11-27 20:16:28 +00:00
|
|
|
"audit": "npm audit --audit-level=low",
|
2023-06-12 09:42:43 +00:00
|
|
|
"configure": "npx npm-force-resolutions || echo 'No package-lock.json file. Skipping force resolutions'",
|
2023-12-12 14:27:51 +00:00
|
|
|
"dep-check": "npm install -g depcheck && depcheck ./ --skip-missing=true"
|
2022-09-28 12:29:53 +00:00
|
|
|
},
|
|
|
|
"browserslist": {
|
2022-11-27 20:16:28 +00:00
|
|
|
"production": [
|
|
|
|
">0.2%",
|
|
|
|
"not dead",
|
|
|
|
"not op_mini all"
|
|
|
|
],
|
|
|
|
"development": [
|
|
|
|
"last 1 chrome version",
|
|
|
|
"last 1 firefox version",
|
|
|
|
"last 1 safari version"
|
|
|
|
]
|
2022-09-28 12:29:53 +00:00
|
|
|
},
|
2023-12-12 15:11:04 +00:00
|
|
|
"dependencies": {
|
|
|
|
"Common": "file:../Common",
|
|
|
|
"CommonServer": "file:../CommonServer",
|
|
|
|
"CommonUI": "file:../CommonUI",
|
2023-12-12 17:20:16 +00:00
|
|
|
"dotenv": "^16.3.1",
|
2023-12-12 17:54:35 +00:00
|
|
|
"express": "^4.18.2",
|
2023-12-12 15:11:04 +00:00
|
|
|
"Model": "file:../Model",
|
|
|
|
"react": "^18.2.0",
|
|
|
|
"react-dom": "^18.1.0",
|
|
|
|
"react-router-dom": "^6.19.0",
|
|
|
|
"use-async-effect": "^2.2.6"
|
|
|
|
},
|
2022-09-28 12:29:53 +00:00
|
|
|
"devDependencies": {
|
2022-11-27 20:16:28 +00:00
|
|
|
"@types/node": "^16.11.35",
|
2023-11-22 11:50:57 +00:00
|
|
|
"@types/react": "^18.2.38",
|
2022-11-27 20:16:28 +00:00
|
|
|
"@types/react-dom": "^18.0.4",
|
|
|
|
"@types/react-router-dom": "^5.3.3",
|
2023-12-05 12:33:18 +00:00
|
|
|
"cross-env": "^7.0.3",
|
2022-12-17 07:21:42 +00:00
|
|
|
"nodemon": "^2.0.20",
|
2022-11-27 20:16:28 +00:00
|
|
|
"ts-node": "^10.9.1",
|
2023-04-12 10:47:45 +00:00
|
|
|
"webpack": "^5.76.0",
|
2023-12-12 15:11:04 +00:00
|
|
|
"webpack-bundle-analyzer": "^4.10.1"
|
2022-09-28 12:29:53 +00:00
|
|
|
}
|
|
|
|
}
|