oneuptime/status-page/package.json

76 lines
2.4 KiB
JSON
Raw Normal View History

2019-08-02 12:56:16 +00:00
{
2020-02-27 11:15:46 +00:00
"name": "status-page",
2020-05-19 20:02:11 +00:00
"version": "3.0.0",
2020-02-27 11:15:46 +00:00
"private": true,
"dependencies": {
2021-01-11 13:49:26 +00:00
"axios": "^0.21.1",
2020-02-27 11:15:46 +00:00
"card-validator": "^6.0.0",
"chai": "^4.2.0",
"chai-http": "^4.3.0",
"custom-env": "^2.0.1",
"dotenv": "^8.2.0",
2020-02-27 11:15:46 +00:00
"express": "^4.17.1",
"history": "^4.7.2",
2020-08-24 21:01:33 +00:00
"markdown-to-jsx": "^6.11.4",
2020-02-27 11:15:46 +00:00
"mocha": "^6.1.4",
"moment": "^2.22.1",
2021-03-10 22:27:34 +00:00
"node-fetch": "^2.6.1",
2020-02-27 11:15:46 +00:00
"prop-types": "^15.6.2",
2021-01-20 12:24:10 +00:00
"puppeteer": "^5.5.0",
2020-02-27 11:15:46 +00:00
"query-string": "^6.10.1",
"react": "^16.3.2",
"react-dom": "^16.3.2",
"react-helmet": "^5.2.0",
"react-onclickout": "^2.0.8",
"react-redux": "^5.0.7",
"react-router-dom": "^4.3.1",
"react-router-redux": "^4.0.8",
2021-03-02 14:04:07 +00:00
"react-scripts": "^3.4.4",
2020-06-19 10:13:33 +00:00
"recharts": "^1.8.5",
2020-02-27 11:15:46 +00:00
"redux": "^4.0.0",
"redux-form": "^7.4.2",
"redux-logger": "^3.0.6",
"redux-thunk": "^2.2.0",
"sane-email-validation": "^1.1.0",
2020-06-11 16:17:51 +00:00
"serve": "^11.3.2",
"socket.io-client": "^2.4.0",
2020-02-27 11:15:46 +00:00
"stripe": "^6.36.0",
2021-03-01 19:46:25 +00:00
"valid-url": "^1.0.9",
"webpack": "^5.24.2"
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-02-26 09:07:52 +00:00
"@storybook/react": "^6.1.20",
2020-02-27 11:15:46 +00:00
"cross-env": "^5.2.0",
"depcheck": "^0.9.2",
2021-03-06 12:46:43 +00:00
"jest-localstorage-mock": "^2.3.0",
"npm-force-resolutions": "0.0.3"
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'",
2021-03-01 20:21:19 +00:00
"start": "node index.js",
2020-02-27 11:15:46 +00:00
"build": "react-scripts build",
2021-03-02 21:08:15 +00:00
"dev": "export PORT=3006 && react-scripts 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"
]
}
2019-08-02 12:56:16 +00:00
}