oneuptime/StatusPage/package.json

81 lines
2.7 KiB
JSON
Raw Normal View History

2019-08-02 12:56:16 +00:00
{
2022-05-10 19:28:56 +00:00
"name": "status-page",
2020-05-19 20:02:11 +00:00
"version": "3.0.0",
2022-05-08 12:27:23 +00:00
"private": false,
2022-02-25 13:25:16 +00:00
"type": "module",
2020-02-27 11:15:46 +00:00
"dependencies": {
2022-04-10 22:04:03 +00:00
"CommonServer": "file:../CommonServer",
"Common": "file:../Common",
2022-04-11 13:11:16 +00:00
"CommonUI": "file:../CommonUI",
2022-03-22 10:34:57 +00:00
"axios": "^0.26.1",
"chai": "^4.3.6",
2020-02-27 11:15:46 +00:00
"chai-http": "^4.3.0",
2021-08-30 10:28:35 +00:00
"cors": "^2.8.5",
2022-02-28 14:04:19 +00:00
"dotenv": "^16.0.0",
2022-03-22 10:34:57 +00:00
"express": "^4.17.3",
"google-translate": "^3.0.0",
2022-03-22 10:34:57 +00:00
"history": "^5.3.0",
"markdown-to-jsx": "^7.1.7",
"mocha": "^9.2.2",
2021-06-24 14:49:19 +00:00
"moment": "^2.29.1",
2022-03-22 10:34:57 +00:00
"mongodb": "^4.4.1",
"node-fetch": "^3.2.3",
"prop-types": "^15.8.1",
2022-03-13 22:50:53 +00:00
"puppeteer": "^13.5.1",
2022-03-22 10:34:57 +00:00
"query-string": "^7.1.1",
2022-05-08 12:27:23 +00:00
"react": "^18.1.0",
"react-auto-translate": "^0.0.6",
2021-08-30 10:28:35 +00:00
"react-dom": "^17.0.2",
2021-06-24 14:49:19 +00:00
"react-helmet": "^6.1.0",
2020-02-27 11:15:46 +00:00
"react-onclickout": "^2.0.8",
2022-03-22 10:34:57 +00:00
"react-redux": "^7.2.6",
"react-router-dom": "^6.2.2",
2020-02-27 11:15:46 +00:00
"react-router-redux": "^4.0.8",
2022-03-22 10:34:57 +00:00
"react-scripts": "^5.0.0",
"recharts": "^2.1.9",
"redux": "^4.1.2",
"redux-form": "^8.3.8",
2020-02-27 11:15:46 +00:00
"redux-logger": "^3.0.6",
2022-03-22 10:34:57 +00:00
"redux-thunk": "^2.4.1",
2021-06-24 14:49:19 +00:00
"sane-email-validation": "^3.0.1",
2022-03-22 10:34:57 +00:00
"serve": "^13.0.2",
"shx": "^0.3.4",
"socket.io-client": "^4.4.1",
"stripe": "^8.210.0",
2021-06-14 21:20:53 +00:00
"valid-url": "^1.0.9"
2020-02-27 11:15:46 +00:00
},
2021-03-06 13:24:28 +00:00
"resolutions": {},
2020-02-27 11:15:46 +00:00
"devDependencies": {
2021-06-24 14:49:19 +00:00
"cross-env": "^7.0.3",
2022-03-22 10:34:57 +00:00
"depcheck": "^1.4.3",
"jest-localstorage-mock": "^2.4.19",
2021-06-24 14:49:19 +00:00
"npm-force-resolutions": "0.0.10"
2020-02-27 11:15:46 +00:00
},
"scripts": {
2021-03-06 12:46:43 +00:00
"preinstall": "npx npm-force-resolutions || echo 'No package-lock.json file. Skipping force resolutions'",
2022-03-02 11:18:11 +00:00
"start": "node index.ts",
2022-01-24 19:00:53 +00:00
"build": "react-scripts --openssl-legacy-provider build",
"postbuild": "shx cp robots.txt build",
2022-01-24 19:00:53 +00:00
"dev": "export PORT=3006 && react-scripts --openssl-legacy-provider start",
2020-02-27 11:15:46 +00:00
"test": "mocha --exit ./src/test/statusPage.test.js",
"eject": "react-scripts eject",
"snapshots": "cross-env CI=true react-scripts test --env=jsdom --coverage --coverage",
"snapshots:watch": "react-scripts test --env=jsdom --watchAll",
"storybook": "start-storybook -p 9009 -s public",
"build-storybook": "build-storybook -s public",
2020-12-10 07:10:18 +00:00
"audit": "npm audit --audit-level=low",
2020-02-27 11:28:52 +00:00
"dep-check": "depcheck ./ --skip-missing=true --ignores='serve'"
2020-02-27 11:15:46 +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"
]
}
2022-03-13 22:50:53 +00:00
}