|
@@ -0,0 +1,69 @@
|
|
|
+{
|
|
|
+ "name": "create-next-example-app",
|
|
|
+ "version": "1.0.0",
|
|
|
+ "scripts": {
|
|
|
+ "dev": "babel-node ./server",
|
|
|
+ "build": "yarn build:next && yarn build:server",
|
|
|
+ "build:next": "next build",
|
|
|
+ "build:server": "webpack --config ./server/webpack.config.js",
|
|
|
+ "start": "node .next/server.bundle.js",
|
|
|
+ "export": "npm run build && next export",
|
|
|
+ "lint": "eslint '**/*.js'",
|
|
|
+ "test": "jest --config=./config/jest.config.js"
|
|
|
+ },
|
|
|
+ "pre-commit": [
|
|
|
+ "lint"
|
|
|
+ ],
|
|
|
+ "dependencies": {
|
|
|
+ "@loadable/component": "^5.10.3",
|
|
|
+ "babel-plugin-inline-react-svg": "^1.0.1",
|
|
|
+ "body-parser": "^1.18.3",
|
|
|
+ "compression": "^1.7.4",
|
|
|
+ "cookie-parser": "^1.4.3",
|
|
|
+ "express": "^4.17.1",
|
|
|
+ "express-session": "^1.15.6",
|
|
|
+ "immer": "^5.0.0",
|
|
|
+ "isomorphic-unfetch": "^3.0.0",
|
|
|
+ "js-cookie": "^2.2.0",
|
|
|
+ "mobile-detect": "^1.4.3",
|
|
|
+ "morgan": "^1.9.1",
|
|
|
+ "next": "^9.1.2",
|
|
|
+ "next-i18next": "^2.0.0",
|
|
|
+ "next-redux-saga": "^3.0.0",
|
|
|
+ "next-redux-wrapper": "^2.0.0",
|
|
|
+ "prop-types": "^15.6.2",
|
|
|
+ "react": "16.10.0",
|
|
|
+ "react-dom": "16.10.0",
|
|
|
+ "react-redux": "^7.1.1",
|
|
|
+ "redux": "^4.0.0",
|
|
|
+ "redux-devtools-extension": "^2.13.5",
|
|
|
+ "redux-saga": "^1.1.1",
|
|
|
+ "styled-components": "4.4.0"
|
|
|
+ },
|
|
|
+ "license": "MIT",
|
|
|
+ "devDependencies": {
|
|
|
+ "@babel/node": "^7.2.2",
|
|
|
+ "@testing-library/jest-dom": "^4.2.3",
|
|
|
+ "@testing-library/react": "^9.3.2",
|
|
|
+ "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-plugin-import": "^2.14.0",
|
|
|
+ "eslint-plugin-jsx-a11y": "^6.1.1",
|
|
|
+ "eslint-plugin-react": "^7.11.1",
|
|
|
+ "eslint-plugin-react-hooks": "^2.2.0",
|
|
|
+ "jest": "^25.0.0",
|
|
|
+ "jest-styled-components": "^6.2.1",
|
|
|
+ "pre-commit": "^1.2.2",
|
|
|
+ "react-test-renderer": "^16.5.2",
|
|
|
+ "secure-env": "^1.2.0",
|
|
|
+ "webpack": "^4.29.6",
|
|
|
+ "webpack-cli": "^3.2.3",
|
|
|
+ "webpack-node-externals": "^1.7.2"
|
|
|
+ },
|
|
|
+ "engines": {
|
|
|
+ "node": ">=10.0.0"
|
|
|
+ }
|
|
|
+}
|