oneuptime/status-page/package.json

70 lines
2.2 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": {
"axios": "^0.19.0",
"card-validator": "^6.0.0",
"chai": "^4.2.0",
"chai-http": "^4.3.0",
"custom-env": "^2.0.1",
"express": "^4.17.1",
"history": "^4.7.2",
"mocha": "^6.1.4",
"moment": "^2.22.1",
"prop-types": "^15.6.2",
2020-04-24 21:26:49 +00:00
"puppeteer": "^2.1.1",
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",
2020-03-24 21:13:09 +00:00
"react-scripts": "^3.4.1",
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",
2020-02-27 11:15:46 +00:00
"socket.io-client": "^2.3.0",
"stripe": "^6.36.0",
"valid-url": "^1.0.9"
},
"devDependencies": {
"@storybook/react": "^5.1.9",
"cross-env": "^5.2.0",
"depcheck": "^0.9.2",
"jest-localstorage-mock": "^2.3.0",
"npm-audit-ci-wrapper": "^2.2.1"
2020-02-27 11:15:46 +00:00
},
"scripts": {
"start": "npm run build && node index.js",
"build": "react-scripts build",
"dev": "export PORT=3006 && react-scripts start",
"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",
"audit": "npm-audit-ci-wrapper --threshold=high",
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
}