oneuptime/accounts/package.json

90 lines
2.8 KiB
JSON
Raw Normal View History

2019-08-02 12:56:16 +00:00
{
2020-02-27 11:15:46 +00:00
"name": "fyipe-accounts",
2020-05-19 20:02:11 +00:00
"version": "3.0.0",
2020-02-27 11:15:46 +00:00
"private": true,
"homepage": "/",
"dependencies": {
"@beam-australia/react-env": "^2.1.2",
"amplitude-js": "^5.8.0",
"axios": "^0.18.0",
"browserslist": "^4.6.1",
"card-validator": "^4.3.0",
"cli-table": "^0.3.1",
"compression": "^1.7.4",
"express": "^4.16.4",
"faker": "^4.1.0",
"file-saver": "^2.0.1",
"history": "^4.7.2",
"jest": "^24.7.1",
"loadable-components": "^2.2.3",
"prop-types": "^15.6.1",
2020-04-24 21:26:49 +00:00
"puppeteer": "^2.1.1",
2020-06-02 18:18:32 +00:00
"puppeteer-cluster": "^0.21.0",
2020-02-27 11:15:46 +00:00
"query-string": "^5.1.1",
2020-12-11 11:15:29 +00:00
"react": "^16.14.0",
"react-dom": "^16.14.0",
2020-02-27 11:15:46 +00:00
"react-frontload": "^1.0.3",
"react-ga": "^2.5.3",
"react-redux": "^5.0.7",
2020-07-20 18:22:11 +00:00
"react-reveal": "^1.2.2",
2020-02-27 11:15:46 +00:00
"react-router-dom": "^4.2.2",
"react-router-redux": "^4.0.8",
2020-10-26 12:15:44 +00:00
"react-scripts": "^3.4.4",
2020-02-27 11:15:46 +00:00
"react-stripe-elements": "^1.6.0",
"redux": "^3.7.2",
"redux-form": "^7.3.0",
2020-11-30 14:38:23 +00:00
"redux-logger": "^3.0.6",
2020-02-27 11:15:46 +00:00
"redux-thunk": "^2.2.0",
"sane-email-validation": "^1.1.0",
"universal-cookie": "^4.0.0",
"valid-url": "^1.0.9"
},
"scripts": {
2020-10-29 11:39:16 +00:00
"dev": "PORT=3003 react-scripts start",
2020-04-20 20:17:59 +00:00
"build": "react-scripts build && npm run build-sw",
"build-sw": "node ./src/sw-build.js",
"test": "jest --forceExit --runInBand ./src/test/*.test.js",
"enterprise-test": "jest --forceExit --runInBand ./src/test/*.test.enterprise.js",
2020-02-27 11:15:46 +00:00
"start": "node index.js",
2020-12-10 07:10:18 +00:00
"audit": "npm audit --audit-level=low",
2020-02-27 11:15:46 +00:00
"light-house": "node lighthouse.js --web",
"light-house-mobile": "node lighthouse.js --mobile",
2020-02-27 14:31:55 +00:00
"dep-check": "depcheck ./ --skip-missing=true --ignores='browserslist,loadable-components,@beam-australia/react-env'"
2020-02-27 11:15:46 +00:00
},
"devDependencies": {
2020-05-19 19:11:24 +00:00
"chrome-launcher": "^0.13.2",
2020-02-27 11:15:46 +00:00
"commander": "^4.0.1",
"depcheck": "^0.9.2",
2020-08-07 16:53:30 +00:00
"lighthouse": "^6.2.0",
2020-02-27 11:15:46 +00:00
"ora": "^4.0.3",
2020-02-27 14:31:55 +00:00
"should": "^13.2.3",
2020-02-27 11:15:46 +00:00
"workbox-build": "^4.3.1"
},
"jest": {
"collectCoverageFrom": [
"src/**/*.js",
"!src/**/*.stories.js",
"!src/store.js",
"!src/config.js",
"!src/routes.js",
"!src/setupTests.js"
2020-03-07 15:11:53 +00:00
],
"testMatch": [
"<rootDir>/src/test/**/*.test.js",
"<rootDir>/src/test/**/*.test.enterprise.js"
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
}