| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100 |
- {
- "name": "vendure",
- "version": "0.0.0",
- "description": "A modern, headless ecommerce framework",
- "private": true,
- "license": "MIT",
- "scripts": {
- "populate": "node -r ts-node/register -r tsconfig-paths/register mock-data/populate-cli.ts",
- "start:dev": "nodemon --config nodemon-debug.json",
- "lint": "tslint --project tsconfig.json -c tslint.json",
- "test": "jest",
- "test:watch": "jest --watch",
- "test:cov": "jest --coverage",
- "test:e2e": "jest --config ./e2e/config/jest-e2e.json --runInBand",
- "test:e2e:watch": "jest --config ./e2e/config/jest-e2e.json --watch --runInBand",
- "build": "rimraf dist && tsc -p tsconfig.build.json && gulp"
- },
- "main": "dist/index.js",
- "files": [
- "dist/**/*"
- ],
- "dependencies": {
- "@nestjs/common": "5.3.6",
- "@nestjs/core": "5.3.6",
- "@nestjs/graphql": "5.4.0",
- "@nestjs/testing": "5.3.8",
- "@nestjs/typeorm": "^5.2.2",
- "apollo-server-express": "^2.0.4",
- "bcrypt": "^3.0.1",
- "body-parser": "^1.18.3",
- "cookie-session": "^2.0.0-beta.3",
- "express": "^4.16.3",
- "fs-extra": "^7.0.0",
- "graphql": "^14.0.0",
- "graphql-iso-date": "^3.5.0",
- "graphql-tag": "^2.9.2",
- "graphql-tools": "^3.1.1",
- "graphql-type-json": "^0.2.1",
- "http-proxy-middleware": "^0.19.0",
- "i18next": "^11.6.0",
- "i18next-express-middleware": "^1.3.2",
- "i18next-icu": "^0.4.0",
- "i18next-node-fs-backend": "^2.0.0",
- "ms": "^2.1.1",
- "mysql": "^2.16.0",
- "nanoid": "^1.2.4",
- "reflect-metadata": "^0.1.12",
- "rxjs": "^6.2.0",
- "sharp": "^0.20.8",
- "typeorm": "^0.2.6",
- "typescript": "^2.9.0"
- },
- "devDependencies": {
- "@types/bcrypt": "^2.0.0",
- "@types/cookie-session": "^2.0.36",
- "@types/express": "^4.0.39",
- "@types/faker": "^4.1.3",
- "@types/fs-extra": "^5.0.4",
- "@types/i18next": "^8.4.3",
- "@types/i18next-express-middleware": "^0.0.33",
- "@types/jest": "^23.3.1",
- "@types/nanoid": "^1.2.0",
- "@types/node": "^9.3.0",
- "@types/sharp": "^0.17.10",
- "faker": "^4.1.0",
- "graphql-request": "^1.8.2",
- "gulp": "^4.0.0",
- "jest": "^23.5.0",
- "node-libcurl": "^1.3.3",
- "nodemon": "^1.14.1",
- "rimraf": "^2.6.2",
- "sql.js": "^0.5.0",
- "ts-jest": "^23.1.4",
- "tsconfig-paths": "^3.5.0"
- },
- "jest": {
- "moduleFileExtensions": [
- "js",
- "json",
- "ts"
- ],
- "moduleNameMapper": {
- "shared/(.*)": "<rootDir>/../shared/$1.ts"
- },
- "roots": [
- "src",
- "../shared"
- ],
- "testRegex": ".spec.ts$",
- "transform": {
- "^.+\\.(t|j)s$": "ts-jest"
- },
- "coverageDirectory": "../coverage",
- "globals": {
- "ts-jest": {
- "skipBabel": false
- }
- }
- }
- }
|