Advertisement
Mark1928

Untitled

Jun 29th, 2020
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. {
  2.   "name": "next.js-typescript-starter-kit",
  3.   "version": "8.1.0",
  4.   "main": "index.js",
  5.   "repository": "https://github.com/deptno/next.js-typescript-starter-kit",
  6.   "author": "Bonggyun Lee <deptno@gmail.com>",
  7.   "license": "MIT",
  8.   "private": true,
  9.   "scripts": {
  10.     "start:dev": "next",
  11.     "build:dev": "next build",
  12.     "build": "NODE_ENV=production next build",
  13.     "export": "next export",
  14.     "analyze": "NODE_ENV=production ANALYZE=true next build",
  15.     "start": "next start",
  16.     "test": "jest",
  17.     "test:watch": "jest --watch",
  18.     "test:coverage": "jest --coverage",
  19.     "ts:check": "tsc --noEmit"
  20.   },
  21.   "dependencies": {
  22.     "@zeit/next-sass": "^1.0.1",
  23.     "bootstrap": "^4.5.0",
  24.     "classnames": "^2.2.6",
  25.     "isomorphic-fetch": "^2.2.1",
  26.     "moment": "^2.22.2",
  27.     "next": "^8.1.0",
  28.     "node-sass": "^4.14.1",
  29.     "react": "^16.8.6",
  30.     "react-bootstrap": "^1.0.1",
  31.     "react-dom": "^16.8.6",
  32.     "react-ga": "^2.5.3",
  33.     "react-i18next": "^11.7.0",
  34.     "react-redux": "^5.0.7",
  35.     "redux": "^4.0.0",
  36.     "redux-logger": "^3.0.6",
  37.     "redux-persist": "^4.9.1",
  38.     "redux-thunk": "^2.3.0",
  39.     "sass-loader": "^8.0.2"
  40.   },
  41.   "devDependencies": {
  42.     "@types/classnames": "^2.2.6",
  43.     "@types/enzyme": "^3.1.10",
  44.     "@types/enzyme-adapter-react-16": "^1.0.2",
  45.     "@types/jest": "^24.0.11",
  46.     "@types/node": "^8.10.14",
  47.     "@types/react": "^16.7.13",
  48.     "@types/react-redux": "^6.0.0",
  49.     "@zeit/next-css": "^1.0.1",
  50.     "@zeit/next-typescript": "^1.1.1",
  51.     "babel-jest": "^24.7.1",
  52.     "babel-plugin-transform-define": "^1.3.0",
  53.     "enzyme": "^3.7.0",
  54.     "enzyme-adapter-react-16": "^1.6.0",
  55.     "jest": "^24.7.1",
  56.     "postcss": "^7.0.5",
  57.     "postcss-preset-env": "^6.0.10",
  58.     "ts-jest": "^24.0.2",
  59.     "typescript": "^3.4.5",
  60.     "webpack-bundle-analyzer": "^3.0.2"
  61.   },
  62.   "jest": {
  63.     "moduleFileExtensions": [
  64.       "ts",
  65.       "tsx",
  66.       "js"
  67.     ],
  68.     "transform": {
  69.       "^.+\\.tsx?$": "ts-jest"
  70.     },
  71.     "testMatch": [
  72.       "**/*.(test|spec).(ts|tsx)"
  73.     ],
  74.     "globals": {
  75.       "ts-jest": {
  76.         "babelConfig": true,
  77.         "tsConfig": "jest.tsconfig.json"
  78.       }
  79.     },
  80.     "coveragePathIgnorePatterns": [
  81.       "/node_modules/",
  82.       "enzyme.js"
  83.     ],
  84.     "setupFilesAfterEnv": [
  85.       "<rootDir>/enzyme.js"
  86.     ],
  87.     "coverageReporters": [
  88.       "json",
  89.       "lcov",
  90.       "text",
  91.       "text-summary"
  92.     ],
  93.     "moduleNameMapper": {
  94.       "\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$": "<rootDir>/__mocks__/mocks.js",
  95.       "\\.(css|less)$": "<rootDir>/__mocks__/mocks.js"
  96.     }
  97.   }
  98. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement