| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102 |
- {
- "name": "@vendure/core",
- "version": "1.3.2",
- "description": "A modern, headless ecommerce framework",
- "repository": {
- "type": "git",
- "url": "https://github.com/vendure-ecommerce/vendure/"
- },
- "keywords": [
- "vendure",
- "ecommerce",
- "headless",
- "graphql",
- "typescript"
- ],
- "homepage": "https://www.vendure.io/",
- "funding": "https://github.com/sponsors/michaelbromley",
- "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 --package=core",
- "ci": "yarn build"
- },
- "publishConfig": {
- "access": "public"
- },
- "main": "dist/index.js",
- "types": "dist/index.d.ts",
- "bin": {
- "vendure": "cli/vendure-cli.js"
- },
- "files": [
- "dist/**/*",
- "cli/**/*"
- ],
- "dependencies": {
- "@graphql-tools/stitch": "^7.5.3",
- "@nestjs/common": "7.6.17",
- "@nestjs/core": "7.6.17",
- "@nestjs/graphql": "7.10.6",
- "@nestjs/platform-express": "7.6.17",
- "@nestjs/terminus": "7.2.0",
- "@nestjs/testing": "7.6.17",
- "@nestjs/typeorm": "7.1.5",
- "@types/fs-extra": "^9.0.1",
- "@vendure/common": "^1.3.2",
- "apollo-server-express": "2.24.1",
- "bcrypt": "^5.0.0",
- "body-parser": "^1.19.0",
- "chalk": "^4.1.0",
- "commander": "^7.1.0",
- "cookie-session": "^2.0.0-rc.1",
- "csv-parse": "^4.12.0",
- "express": "^4.17.1",
- "fs-extra": "^10.0.0",
- "graphql": "15.5.1",
- "graphql-scalars": "^1.10.0",
- "graphql-tag": "^2.12.4",
- "graphql-upload": "^12.0.0",
- "http-proxy-middleware": "^2.0.1",
- "i18next": "^19.8.1",
- "i18next-express-middleware": "^2.0.0",
- "i18next-fs-backend": "^1.1.1",
- "i18next-icu": "^1.4.2",
- "image-size": "^1.0.0",
- "mime-types": "^2.1.27",
- "ms": "^2.1.2",
- "nanoid": "^3.1.23",
- "progress": "^2.0.3",
- "reflect-metadata": "^0.1.13",
- "rxjs": "^6.6.3",
- "typeorm": "0.2.31"
- },
- "devDependencies": {
- "@types/bcrypt": "^3.0.0",
- "@types/cookie-session": "^2.0.41",
- "@types/csv-parse": "^1.2.2",
- "@types/express": "^4.17.8",
- "@types/faker": "^4.1.7",
- "@types/graphql-upload": "^8.0.4",
- "@types/gulp": "^4.0.7",
- "@types/mime-types": "^2.1.0",
- "@types/ms": "^0.7.31",
- "@types/node": "^14.14.31",
- "@types/progress": "^2.0.3",
- "@types/prompts": "^2.0.9",
- "better-sqlite3": "^7.1.1",
- "gulp": "^4.0.2",
- "mysql": "^2.18.1",
- "pg": "^8.4.0",
- "rimraf": "^3.0.2",
- "sql.js": "1.3.2",
- "sqlite3": "^5.0.0",
- "typescript": "4.3.5"
- }
- }
|