package.json 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100
  1. {
  2. "name": "vendure",
  3. "version": "0.0.0",
  4. "description": "A modern, headless ecommerce framework",
  5. "private": true,
  6. "license": "MIT",
  7. "scripts": {
  8. "populate": "node -r ts-node/register -r tsconfig-paths/register mock-data/populate-cli.ts",
  9. "start:dev": "nodemon --config nodemon-debug.json",
  10. "lint": "tslint --project tsconfig.json -c tslint.json",
  11. "test": "jest",
  12. "test:watch": "jest --watch",
  13. "test:cov": "jest --coverage",
  14. "test:e2e": "jest --config ./e2e/config/jest-e2e.json --runInBand",
  15. "test:e2e:watch": "jest --config ./e2e/config/jest-e2e.json --watch --runInBand",
  16. "build": "rimraf dist && tsc -p tsconfig.build.json && gulp"
  17. },
  18. "main": "dist/index.js",
  19. "files": [
  20. "dist/**/*"
  21. ],
  22. "dependencies": {
  23. "@nestjs/common": "5.3.6",
  24. "@nestjs/core": "5.3.6",
  25. "@nestjs/graphql": "5.4.0",
  26. "@nestjs/testing": "5.3.8",
  27. "@nestjs/typeorm": "^5.2.2",
  28. "apollo-server-express": "^2.0.4",
  29. "bcrypt": "^3.0.1",
  30. "body-parser": "^1.18.3",
  31. "cookie-session": "^2.0.0-beta.3",
  32. "express": "^4.16.3",
  33. "fs-extra": "^7.0.0",
  34. "graphql": "^14.0.0",
  35. "graphql-iso-date": "^3.5.0",
  36. "graphql-tag": "^2.9.2",
  37. "graphql-tools": "^3.1.1",
  38. "graphql-type-json": "^0.2.1",
  39. "http-proxy-middleware": "^0.19.0",
  40. "i18next": "^11.6.0",
  41. "i18next-express-middleware": "^1.3.2",
  42. "i18next-icu": "^0.4.0",
  43. "i18next-node-fs-backend": "^2.0.0",
  44. "ms": "^2.1.1",
  45. "mysql": "^2.16.0",
  46. "nanoid": "^1.2.4",
  47. "reflect-metadata": "^0.1.12",
  48. "rxjs": "^6.2.0",
  49. "sharp": "^0.20.8",
  50. "typeorm": "^0.2.6",
  51. "typescript": "^2.9.0"
  52. },
  53. "devDependencies": {
  54. "@types/bcrypt": "^2.0.0",
  55. "@types/cookie-session": "^2.0.36",
  56. "@types/express": "^4.0.39",
  57. "@types/faker": "^4.1.3",
  58. "@types/fs-extra": "^5.0.4",
  59. "@types/i18next": "^8.4.3",
  60. "@types/i18next-express-middleware": "^0.0.33",
  61. "@types/jest": "^23.3.1",
  62. "@types/nanoid": "^1.2.0",
  63. "@types/node": "^9.3.0",
  64. "@types/sharp": "^0.17.10",
  65. "faker": "^4.1.0",
  66. "graphql-request": "^1.8.2",
  67. "gulp": "^4.0.0",
  68. "jest": "^23.5.0",
  69. "node-libcurl": "^1.3.3",
  70. "nodemon": "^1.14.1",
  71. "rimraf": "^2.6.2",
  72. "sql.js": "^0.5.0",
  73. "ts-jest": "^23.1.4",
  74. "tsconfig-paths": "^3.5.0"
  75. },
  76. "jest": {
  77. "moduleFileExtensions": [
  78. "js",
  79. "json",
  80. "ts"
  81. ],
  82. "moduleNameMapper": {
  83. "shared/(.*)": "<rootDir>/../shared/$1.ts"
  84. },
  85. "roots": [
  86. "src",
  87. "../shared"
  88. ],
  89. "testRegex": ".spec.ts$",
  90. "transform": {
  91. "^.+\\.(t|j)s$": "ts-jest"
  92. },
  93. "coverageDirectory": "../coverage",
  94. "globals": {
  95. "ts-jest": {
  96. "skipBabel": false
  97. }
  98. }
  99. }
  100. }