| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105 |
- {
- "name": "@vendure/core",
- "version": "0.7.0",
- "description": "A modern, headless ecommerce framework",
- "repository": {
- "type": "git",
- "url": "https://github.com/vendure-ecommerce/vendure/"
- },
- "keywords": [
- "vendure",
- "ecommerce",
- "headless",
- "graphql",
- "typescript"
- ],
- "private": false,
- "license": "MIT",
- "scripts": {
- "tsc:watch": "tsc -p ./build/tsconfig.build.json --watch",
- "gulp:watch": "gulp -f ./build/gulpfile.ts watch",
- "build": "rimraf dist && tsc -p ./build/tsconfig.build.json && tsc -p ./build/tsconfig.cli.json && gulp -f ./build/gulpfile.ts build",
- "watch": "concurrently yarn:tsc:watch yarn:gulp:watch",
- "lint": "tslint --fix --project ./",
- "test": "jest --config ./jest.config.js",
- "e2e": "jest --config ../../e2e-common/jest-config.js --runInBand --package=core",
- "ci": "yarn build"
- },
- "publishConfig": {
- "access": "public"
- },
- "main": "dist/index.js",
- "types": "dist/index.d.ts",
- "bin": {
- "vendure": "dist/cli/vendure-cli.js"
- },
- "files": [
- "dist/**/*"
- ],
- "dependencies": {
- "@nestjs/common": "6.8.5",
- "@nestjs/core": "6.8.5",
- "@nestjs/graphql": "6.5.3",
- "@nestjs/microservices": "^6.8.5",
- "@nestjs/platform-express": "6.8.5",
- "@nestjs/testing": "6.8.5",
- "@nestjs/typeorm": "6.2.0",
- "@types/fs-extra": "^8.0.1",
- "@vendure/common": "^0.7.0",
- "apollo-server-express": "2.9.7",
- "bcrypt": "^3.0.6",
- "body-parser": "^1.18.3",
- "chalk": "^2.4.2",
- "commander": "^3.0.2",
- "cookie-session": "^2.0.0-beta.3",
- "csv-parse": "^4.6.5",
- "express": "^4.16.4",
- "fs-extra": "^8.0.1",
- "graphql": "^14.5.8",
- "graphql-iso-date": "^3.6.1",
- "graphql-tag": "^2.10.0",
- "graphql-tools": "^4.0.6",
- "graphql-type-json": "^0.3.0",
- "http-proxy-middleware": "^0.20.0",
- "i18next": "^18.0.1",
- "i18next-express-middleware": "^1.7.1",
- "i18next-icu": "^1.0.1",
- "i18next-node-fs-backend": "^2.1.1",
- "image-size": "^0.8.3",
- "mime-types": "^2.1.21",
- "ms": "^2.1.1",
- "nanoid": "^2.1.6",
- "progress": "^2.0.3",
- "reflect-metadata": "^0.1.12",
- "rxjs": "^6.3.3",
- "typeorm": "0.2.21"
- },
- "devDependencies": {
- "@types/bcrypt": "^3.0.0",
- "@types/cookie-session": "^2.0.36",
- "@types/csv-parse": "^1.1.11",
- "@types/express": "^4.0.39",
- "@types/faker": "^4.1.7",
- "@types/graphql-iso-date": "^3.3.1",
- "@types/graphql-type-json": "^0.3.2",
- "@types/gulp": "^4.0.5",
- "@types/http-proxy-middleware": "^0.19.2",
- "@types/jest": "^24.0.21",
- "@types/mime-types": "^2.1.0",
- "@types/ms": "^0.7.30",
- "@types/nanoid": "^2.1.0",
- "@types/node": "^10.12.18",
- "@types/node-fetch": "^2.5.2",
- "@types/progress": "^2.0.3",
- "@types/prompts": "^2.0.2",
- "gulp": "^4.0.0",
- "mysql": "^2.16.0",
- "node-fetch": "^2.6.0",
- "node-libcurl": "^2.0.2",
- "pg": "^7.8.0",
- "rimraf": "^3.0.0",
- "sql.js": "^1.0.0",
- "sqlite3": "^4.0.6",
- "typescript": "~3.6.2"
- }
- }
|