|
@@ -4,31 +4,88 @@
|
|
"description": "A starter for Medusa projects.",
|
|
"description": "A starter for Medusa projects.",
|
|
"author": "Sebastian Rindom <skrindom@gmail.com>",
|
|
"author": "Sebastian Rindom <skrindom@gmail.com>",
|
|
"license": "MIT",
|
|
"license": "MIT",
|
|
- "scripts": {
|
|
|
|
- "seed": "medusa seed -f ./data/seed.json",
|
|
|
|
- "build": "babel src -d dist --extensions \".ts,.js\"",
|
|
|
|
- "start": "medusa develop"
|
|
|
|
- },
|
|
|
|
- "dependencies": {
|
|
|
|
- "@medusajs/medusa": "^1.3.4",
|
|
|
|
- "@medusajs/medusa-cli": "^1.3.1",
|
|
|
|
- "medusa-fulfillment-manual": "^1.1.31",
|
|
|
|
- "medusa-interfaces": "^1.3.1",
|
|
|
|
- "medusa-payment-manual": "^1.0.16",
|
|
|
|
- "medusa-payment-stripe": "^1.1.41",
|
|
|
|
- "typeorm": "^0.2.36"
|
|
|
|
- },
|
|
|
|
"repository": "https://github.com/medusajs/medusa-starter-default.git",
|
|
"repository": "https://github.com/medusajs/medusa-starter-default.git",
|
|
|
|
+ "contributors": [
|
|
|
|
+ {
|
|
|
|
+ "name": "Adrien de Peretti",
|
|
|
|
+ "email": "adrien.deperetti@gmail.com",
|
|
|
|
+ "url": "http://www.github.com/adrien2p"
|
|
|
|
+ }
|
|
|
|
+ ],
|
|
"keywords": [
|
|
"keywords": [
|
|
"sqlite",
|
|
"sqlite",
|
|
|
|
+ "postgres",
|
|
|
|
+ "typescript",
|
|
"ecommerce",
|
|
"ecommerce",
|
|
"headless",
|
|
"headless",
|
|
"medusa"
|
|
"medusa"
|
|
],
|
|
],
|
|
|
|
+ "scripts": {
|
|
|
|
+ "clean": "./node_modules/.bin/rimraf dist",
|
|
|
|
+ "build": "npm run clean && tsc -p tsconfig.json",
|
|
|
|
+ "watch": "tsc --watch",
|
|
|
|
+ "test": "jest",
|
|
|
|
+ "seed": "medusa seed -f ./data/seed.json",
|
|
|
|
+ "start": "npm run build && medusa start"
|
|
|
|
+ },
|
|
|
|
+ "dependencies": {
|
|
|
|
+ "@babel/preset-typescript": "^7.21.4",
|
|
|
|
+ "@medusajs/cache-redis": "^2.0.0-next-20230323083446",
|
|
|
|
+ "@medusajs/event-bus-redis": "^1.8.0-rc.1",
|
|
|
|
+ "@medusajs/medusa": "1.8.0-rc.5",
|
|
|
|
+ "@medusajs/medusa-cli": "^1.3.9-rc.1",
|
|
|
|
+ "@medusajs/types": "^0.0.2-rc.0",
|
|
|
|
+ "@medusajs/utils": "^0.0.2-rc.0",
|
|
|
|
+ "babel-preset-medusa-package": "^1.1.13",
|
|
|
|
+ "body-parser": "^1.19.0",
|
|
|
|
+ "cors": "^2.8.5",
|
|
|
|
+ "express": "^4.17.2",
|
|
|
|
+ "medusa-fulfillment-manual": "^2.0.0-next-20230322094312",
|
|
|
|
+ "medusa-interfaces": "^1.4.0-next.0",
|
|
|
|
+ "medusa-payment-manual": "^2.0.0-next-20230322094312",
|
|
|
|
+ "medusa-payment-stripe": "^2.0.0-snapshot-20230320172940",
|
|
|
|
+ "typeorm": "^0.3.11"
|
|
|
|
+ },
|
|
"devDependencies": {
|
|
"devDependencies": {
|
|
"@babel/cli": "^7.14.3",
|
|
"@babel/cli": "^7.14.3",
|
|
"@babel/core": "^7.14.3",
|
|
"@babel/core": "^7.14.3",
|
|
- "@babel/preset-typescript": "^7.14.5",
|
|
|
|
- "babel-preset-medusa-package": "^1.1.19"
|
|
|
|
|
|
+ "@types/express": "^4.17.13",
|
|
|
|
+ "@types/jest": "^27.4.0",
|
|
|
|
+ "@types/node": "^17.0.8",
|
|
|
|
+ "babel-preset-medusa-package": "^1.1.13",
|
|
|
|
+ "cross-env": "^5.2.1",
|
|
|
|
+ "eslint": "^6.8.0",
|
|
|
|
+ "jest": "^27.3.1",
|
|
|
|
+ "mongoose": "^5.13.14",
|
|
|
|
+ "rimraf": "^3.0.2",
|
|
|
|
+ "ts-jest": "^27.0.7",
|
|
|
|
+ "ts-loader": "^9.2.6",
|
|
|
|
+ "typescript": "^4.5.2"
|
|
|
|
+ },
|
|
|
|
+ "jest": {
|
|
|
|
+ "globals": {
|
|
|
|
+ "ts-jest": {
|
|
|
|
+ "tsconfig": "tsconfig.spec.json"
|
|
|
|
+ }
|
|
|
|
+ },
|
|
|
|
+ "moduleFileExtensions": [
|
|
|
|
+ "js",
|
|
|
|
+ "json",
|
|
|
|
+ "ts"
|
|
|
|
+ ],
|
|
|
|
+ "testPathIgnorePatterns": [
|
|
|
|
+ "/node_modules/",
|
|
|
|
+ "<rootDir>/node_modules/"
|
|
|
|
+ ],
|
|
|
|
+ "rootDir": "src",
|
|
|
|
+ "testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts|js)$",
|
|
|
|
+ "transform": {
|
|
|
|
+ ".ts": "ts-jest"
|
|
|
|
+ },
|
|
|
|
+ "collectCoverageFrom": [
|
|
|
|
+ "**/*.(t|j)s"
|
|
|
|
+ ],
|
|
|
|
+ "coverageDirectory": "./coverage",
|
|
|
|
+ "testEnvironment": "node"
|
|
}
|
|
}
|
|
}
|
|
}
|