| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899 |
- {
- "name": "@vendure/core",
- "version": "0.1.0-alpha.18",
- "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": {
- "lint": "tslint --project tsconfig.json -c tslint.json",
- "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",
- "publish:alpha": "yarn build && npm publish --access public --tag alpha"
- },
- "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.0.5",
- "@nestjs/core": "^6.0.5",
- "@nestjs/graphql": "^6.0.5",
- "@nestjs/platform-express": "^6.0.5",
- "@nestjs/testing": "^6.0.5",
- "@nestjs/typeorm": "^6.0.0",
- "@vendure/common": ">=0.1.0-alpha.1",
- "apollo-server-express": "^2.4.0",
- "bcrypt": "^3.0.3",
- "body-parser": "^1.18.3",
- "commander": "^2.19.0",
- "cookie-session": "^2.0.0-beta.3",
- "csv-parse": "^4.3.0",
- "express": "^4.16.4",
- "fs-extra": "^7.0.1",
- "graphql": "^14.1.1",
- "graphql-iso-date": "^3.6.1",
- "graphql-tag": "^2.10.0",
- "graphql-tools": "^4.0.3",
- "graphql-type-json": "^0.2.1",
- "i18next": "^13.1.0",
- "i18next-express-middleware": "^1.7.1",
- "i18next-icu": "^1.0.1",
- "i18next-node-fs-backend": "^2.1.1",
- "mime-types": "^2.1.21",
- "ms": "^2.1.1",
- "nanoid": "^2.0.0",
- "progress": "^2.0.3",
- "reflect-metadata": "^0.1.12",
- "rxjs": "^6.3.3",
- "typeorm": "0.2.15"
- },
- "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.4",
- "@types/fs-extra": "^5.0.4",
- "@types/graphql-iso-date": "^3.3.1",
- "@types/graphql-type-json": "^0.1.3",
- "@types/gulp": "^4.0.5",
- "@types/http-proxy-middleware": "^0.19.2",
- "@types/jest": "^23.3.12",
- "@types/mime-types": "^2.1.0",
- "@types/ms": "^0.7.30",
- "@types/nanoid": "^1.2.0",
- "@types/node": "^10.12.18",
- "@types/progress": "^2.0.3",
- "@types/prompts": "^1.2.0",
- "faker": "^4.1.0",
- "graphql-request": "^1.8.2",
- "gulp": "^4.0.0",
- "mysql": "^2.16.0",
- "node-libcurl": "^1.3.3",
- "opn": "^5.4.0",
- "pg": "^7.8.0",
- "rimraf": "^2.6.3",
- "sql.js": "^0.5.0",
- "sqlite3": "^4.0.6",
- "typescript": "^3.2.4"
- }
- }
|