2022-05-22 08:46:54 +00:00
|
|
|
{
|
2024-03-14 13:43:21 +00:00
|
|
|
"name": "@oneuptime/dashboard",
|
2022-05-23 21:09:32 +00:00
|
|
|
"version": "0.1.0",
|
2022-09-28 12:29:53 +00:00
|
|
|
"private": false,
|
2022-05-23 21:09:32 +00:00
|
|
|
"scripts": {
|
2022-12-17 07:21:42 +00:00
|
|
|
"dev": "npx nodemon",
|
2022-11-09 21:05:46 +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-05-23 21:09:32 +00:00
|
|
|
"test": "react-app-rewired test",
|
2022-07-06 11:13:07 +00:00
|
|
|
"eject": "webpack eject",
|
2022-05-23 21:09:32 +00:00
|
|
|
"compile": "tsc",
|
2023-11-22 11:50:57 +00:00
|
|
|
"clear-modules": "rm -rf node_modules && rm package-lock.json && npm install",
|
2022-12-08 08:16:30 +00:00
|
|
|
"start": "node --require ts-node/register Serve.ts",
|
2022-05-23 21:09:32 +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-05-23 21:09:32 +00:00
|
|
|
},
|
2022-05-23 17:01:54 +00:00
|
|
|
"browserslist": {
|
|
|
|
"production": [
|
|
|
|
">0.2%",
|
|
|
|
"not dead",
|
|
|
|
"not op_mini all"
|
|
|
|
],
|
|
|
|
"development": [
|
|
|
|
"last 1 chrome version",
|
|
|
|
"last 1 firefox version",
|
|
|
|
"last 1 safari version"
|
|
|
|
]
|
|
|
|
},
|
2023-12-12 14:49:37 +00:00
|
|
|
"dependencies": {
|
|
|
|
"@stripe/react-stripe-js": "^1.15.0",
|
|
|
|
"@stripe/stripe-js": "^1.44.1",
|
|
|
|
"Common": "file:../Common",
|
2024-07-25 13:42:45 +00:00
|
|
|
|
2023-12-12 14:49:37 +00:00
|
|
|
"CommonServer": "file:../CommonServer",
|
|
|
|
"CommonUI": "file:../CommonUI",
|
2024-03-15 18:35:22 +00:00
|
|
|
"dotenv": "^16.4.5",
|
2023-12-12 18:09:50 +00:00
|
|
|
"file-loader": "^6.2.0",
|
2023-12-12 14:49:37 +00:00
|
|
|
"Model": "file:../Model",
|
2024-05-17 17:08:48 +00:00
|
|
|
"react": "^18.3.1",
|
|
|
|
"react-dom": "^18.3.1",
|
2024-05-17 17:08:53 +00:00
|
|
|
"react-router-dom": "^6.23.0",
|
2024-05-13 21:23:21 +00:00
|
|
|
"reactflow": "^11.11.2",
|
2023-12-12 14:49:37 +00:00
|
|
|
"stripe": "^11.0.0",
|
2024-02-06 14:43:41 +00:00
|
|
|
"style-loader": "^3.3.4",
|
2023-12-12 14:49:37 +00:00
|
|
|
"use-async-effect": "^2.2.6"
|
|
|
|
},
|
2022-05-23 17:01:54 +00:00
|
|
|
"devDependencies": {
|
|
|
|
"@types/node": "^16.11.35",
|
2023-11-22 11:50:57 +00:00
|
|
|
"@types/react": "^18.2.38",
|
2022-05-23 17:01:54 +00:00
|
|
|
"@types/react-dom": "^18.0.4",
|
2023-12-05 12:33:18 +00:00
|
|
|
"cross-env": "^7.0.3",
|
2023-12-12 18:09:50 +00:00
|
|
|
"css-loader": "^6.8.1",
|
2022-12-17 07:21:42 +00:00
|
|
|
"nodemon": "^2.0.20",
|
2022-05-23 17:01:54 +00:00
|
|
|
"react-app-rewired": "^2.2.1",
|
|
|
|
"sass": "^1.51.0",
|
|
|
|
"sass-loader": "^12.6.0",
|
2023-12-12 18:09:50 +00:00
|
|
|
"ts-loader": "^9.5.1",
|
2022-11-27 20:16:28 +00:00
|
|
|
"ts-node": "^10.9.1",
|
2023-03-14 18:11:36 +00:00
|
|
|
"webpack": "^5.76.0",
|
2023-12-12 14:49:37 +00:00
|
|
|
"webpack-bundle-analyzer": "^4.10.1"
|
2022-05-23 17:01:54 +00:00
|
|
|
}
|
2022-09-13 15:01:04 +00:00
|
|
|
}
|