Revision e61492ee9e90f2652df4c505ce35bcad5676129e authored by Thomas Guillet on 21 May 2021, 05:33:56 UTC, committed by Thomas Guillet on 21 May 2021, 05:33:56 UTC
1 parent 6eaac84
Raw File
package.json
{
  "name": "mes-aides-jeunes",
  "version": "12.1.3",
  "description": "Simulateur de prestations sociales pour les jeunes",
  "scripts": {
    "serve": "vue-cli-service serve",
    "build": "vue-cli-service build --no-clean",
    "test:unit": "vue-cli-service test:unit",
    "lint": "npm run eslint .",
    "build:dev": "webpack --mode=development",
    "build:netlify": "npm run build && cp netlify_redirects dist/_redirects",
    "build_old": "NODE_ENV=production webpack --mode=production",
    "cypress": "cypress run",
    "db": "mongod --dbpath db",
    "db-update": "./import-tests.sh",
    "eslint": "eslint .",
    "prettier:check": "prettier --check .",
    "prettier:fix": "prettier --write .",
    "fast-install": "PUPPETEER_SKIP_DOWNLOAD=1 npm ci",
    "front": "NODE_ENV=front_only npm run serve",
    "install-openfisca": "pip install --upgrade -r openfisca/requirements.txt",
    "openfisca": "gunicorn openfisca.api --config openfisca/config.py",
    "predb": "mkdir -p db",
    "prestart": "npm run build && npm run stats",
    "start": "NODE_ENV=production node server.js",
    "stats": "node backend/lib/stats",
    "test": "jest"
  },
  "dependencies": {
    "@babel/runtime": "^7.9.6",
    "@etalab/decoupage-administratif": "^0.8.0",
    "@sentry/integrations": "^5.15.5",
    "@sentry/node": "^5.15.5",
    "@sentry/vue": "^6.2.5",
    "axios": "^0.21.1",
    "body-parser": "^1.19.0",
    "communes-lonlat": "^1.1.0",
    "consolidate": "^0.16.0",
    "cookie-parser": "^1.4.5",
    "core-js": "^3.8.2",
    "cors": "^2.8.4",
    "currency.js": "^2.0.3",
    "currencyformatter.js": "^2.1.0",
    "errorhandler": "^1.5.1",
    "eslint-config-prettier": "^8.3.0",
    "eslint-plugin-prettier": "^3.4.0",
    "eslint-plugin-prettier-vue": "^3.0.0",
    "event-stream": "3.3.4",
    "express": "^4.17.1",
    "font-awesome": "^4.7.0",
    "frozen-moment": "^0.4.0",
    "haversine": "^1.1.1",
    "iframe-resizer": "^4.3.0",
    "jamstack-loader": "0.0.8",
    "js-yaml": "^4.0.0",
    "jsonwebtoken": "^8.5.1",
    "kerberos": "^1.1.4",
    "lodash": "^4.17.20",
    "mingo": "^2.5.3",
    "mjml": "^4.8.1",
    "mkdirp": "^1.0.4",
    "moment": "^2.29.1",
    "mongodb": "^3.6.3",
    "mongoose": "^5.11.10",
    "morgan": "^1.10.0",
    "puppeteer": "1.18.0",
    "require-from-string": "^2.0.2",
    "sib-api-v3-sdk": "^8.1.0",
    "smooth-scroll": "^16.1.3",
    "template.data.gouv.fr": "^1.3.2",
    "tmp": "^0.2.1",
    "validator": "^13.5.2",
    "vue": "^2.6.11",
    "vue-async-computed": "^3.8.2",
    "vue-matomo": "^3.14.0-0",
    "vue-router": "^3.1.6",
    "vuelidate": "^0.7.5",
    "vuex": "^3.4.0"
  },
  "devDependencies": {
    "@vue/cli-plugin-babel": "^4.5.10",
    "@vue/cli-plugin-eslint": "^4.5.10",
    "@vue/cli-plugin-unit-jest": "^4.5.10",
    "@vue/cli-service": "^4.5.10",
    "@vue/test-utils": "1.0.0-beta.29",
    "babel-core": "7.0.0-bridge.0",
    "babel-eslint": "^10.1.0",
    "babel-jest": "^26.6.3",
    "cypress": "^6.8.0",
    "eslint": ">=7.0.0",
    "eslint-plugin-cypress": "^2.11.3",
    "eslint-plugin-vue": "^7.4.1",
    "mustache": "^4.1.0",
    "prettier": "2.3.0",
    "sass": "^1.26.5",
    "sass-loader": "^10.1.1",
    "vue-template-compiler": "^2.6.12"
  },
  "eslintConfig": {
    "root": true,
    "env": {
      "node": true
    },
    "extends": [
      "plugin:vue/essential",
      "eslint:recommended"
    ],
    "rules": {
      "eol-last": "error",
      "no-irregular-whitespace": "off"
    },
    "parserOptions": {
      "parser": "babel-eslint"
    },
    "overrides": [
      {
        "files": [
          "**/__tests__/*.{j,t}s?(x)"
        ],
        "env": {
          "jest": true
        }
      }
    ]
  },
  "postcss": {
    "plugins": {
      "autoprefixer": {}
    }
  },
  "browserslist": [
    "> 5%",
    "ie >= 11"
  ],
  "jest": {
    "moduleFileExtensions": [
      "js",
      "jsx",
      "json",
      "vue"
    ],
    "transform": {
      "^.+\\.vue$": "vue-jest",
      ".+\\.(css|styl|less|sass|scss|svg|png|jpg|ttf|woff|woff2)$": "jest-transform-stub",
      "^.+\\.jsx?$": "babel-jest",
      "^.+\\.js$": "babel-jest"
    },
    "transformIgnorePatterns": [
      "/node_modules/"
    ],
    "moduleNameMapper": {
      "^@/(.*)$": "<rootDir>/src/$1"
    },
    "snapshotSerializers": [
      "jest-serializer-vue"
    ],
    "testMatch": [
      "**/tests/unit/**/*.spec.(js|jsx|ts|tsx)|**/__tests__/*.(js|jsx|ts|tsx)"
    ],
    "testURL": "http://localhost/",
    "watchPlugins": [
      "jest-watch-typeahead/filename",
      "jest-watch-typeahead/testname"
    ]
  },
  "license": "AGPL-3.0",
  "repository": {
    "type": "git",
    "url": "https://github.com/betagouv/aides-jeunes"
  }
}
back to top