1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283 |
- {
- "name": "create-next-example-app",
- "version": "1.0.0",
- "scripts": {
- "dev": "node server.js",
- "build": "next build",
- "start": "NODE_ENV=production node server.js",
- "export": "NODE_ENV=production ENV=production npm run build && next export",
- "lint": "eslint . --ext .ts,.tsx",
- "test": "jest --config=./config/jest.config.js"
- },
- "pre-commit": [
- "lint"
- ],
- "dependencies": {
- "@babel/core": "^7.8.4",
- "@babel/polyfill": "^7.8.3",
- "@material-ui/core": "^4.6.1",
- "babel-plugin-inline-react-svg": "^1.1.0",
- "core-js": "3.6.4",
- "express": "^4.17.1",
- "immer": "^5.0.0",
- "isomorphic-unfetch": "^3.0.0",
- "js-cookie": "^2.2.0",
- "lodash": "^4.17.15",
- "mobile-detect": "^1.4.3",
- "next": "9.2.1",
- "next-i18next": "4.1.0",
- "next-transpile-modules": "^2.3.1",
- "notistack": "^0.9.6",
- "pdfjs-dist": "2.3.200",
- "prop-types": "^15.6.2",
- "query-string": "^6.9.0",
- "react": "16.10.0",
- "react-dom": "16.10.0",
- "react-popper": "^1.3.6",
- "redux-devtools-extension": "^2.13.5",
- "rxjs": "^6.5.3",
- "styled-components": "5.0.0",
- "uuid": "^7.0.2",
- "webpack": "^4.41.2"
- },
- "license": "MIT",
- "devDependencies": {
- "@babel/node": "^7.2.2",
- "@babel/preset-env": "^7.8.3",
- "@testing-library/jest-dom": "^4.2.3",
- "@testing-library/react": "^9.3.2",
- "@types/jest": "^24.0.23",
- "@types/lodash": "^4.14.149",
- "@types/node": "^12.12.7",
- "@types/react": "^16.9.11",
- "@types/react-dom": "^16.9.4",
- "@types/styled-components": "^4.4.0",
- "@types/uuid": "^7.0.0",
- "@typescript-eslint/eslint-plugin": "^2.8.0",
- "@typescript-eslint/parser": "^2.8.0",
- "babel-eslint": "^10.0.1",
- "babel-jest": "^25.0.0",
- "babel-plugin-styled-components": "^1.7.1",
- "eslint": "^5.6.0",
- "eslint-config-airbnb": "^17.1.0",
- "eslint-config-prettier": "^6.7.0",
- "eslint-import-resolver-typescript": "^2.0.0",
- "eslint-plugin-import": "^2.18.2",
- "eslint-plugin-jsx-a11y": "^6.1.1",
- "eslint-plugin-prettier": "^3.1.1",
- "eslint-plugin-react": "^7.11.1",
- "eslint-plugin-react-hooks": "^2.2.0",
- "jest": "24.9.0",
- "jest-styled-components": "^6.2.1",
- "pre-commit": "^1.2.2",
- "prettier": "^1.19.1",
- "react-test-renderer": "^16.5.2",
- "ts-jest": "^24.2.0",
- "typescript": "^3.7.2",
- "webpack-cli": "^3.2.3",
- "webpack-node-externals": "^1.7.2"
- },
- "engines": {
- "node": ">=10.0.0"
- }
- }
|