forked from adrien2p/medusa-extender
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
126 lines (126 loc) · 4.43 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
{
"name": "medusa-extender",
"version": "1.7.3",
"description": "Medusa on steroid, take your medusa project to the next level with some badass features :rocket:",
"keywords": [
"medusa",
"medusajs",
"medusa-plugin",
"e-commerce",
"ecommerce",
"headless",
"extension",
"nodejs",
"modules",
"plugins",
"typescript",
"typeorm",
"swagger-stats",
"prometheus",
"monitoring",
"cli",
"javascript",
"architecture",
"multi-tenancy",
"dynamic-module"
],
"author": "adrien2p <[email protected]>",
"homepage": "https://github.com/adrien2p/medusa-extender",
"license": "MIT",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"private": false,
"files": [
"dist"
],
"bin": {
"medex": "dist/cli/index.js"
},
"repository": {
"type": "git",
"url": "https://github.com/adrien2p/medusa-extender"
},
"bugs": {
"url": "https://github.com/adrien2p/medusa-extender/issues"
},
"scripts": {
"lint": "./node_modules/.bin/eslint . --fix",
"build": "rm -rf dist && ./node_modules/.bin/tsc -p tsconfig.json",
"build:readme": "npx @appnest/readme generate",
"build:doc": "npm run build:readme && rm -rf docs && ./node_modules/.bin/typedoc && cp .github/docs/* docs/ && cp documentation/_README_BUILT.md docs/README.md",
"serve:doc": "./node_modules/.bin/docsify serve docs",
"test:ci": "NODE_ENV=test npm i @medusajs/medusa@${MEDUSAJS_VERSION} && ./node_modules/.bin/jest -i --collect-coverage && npm run coverage:badges",
"prepare:integration": "npm i && npm run build && npm pack --pack-destination integration-tests && npm --prefix integration-tests run prepare:integration",
"prepare:integration:ci": "npm i -D @medusajs/medusa@${MEDUSAJS_VERSION} --force && npm i --force && npm run build && npm pack --pack-destination integration-tests && npm --prefix integration-tests run prepare:integration:ci",
"test:integration": "NODE_ENV=development npm run prepare:integration && npm --prefix integration-tests run test:integration",
"test:integration:ci": "NODE_ENV=development npm run prepare:integration:ci && npm --prefix integration-tests run test:integration",
"test": "NODE_ENV=test ./node_modules/.bin/jest --maxWorkers=75% --collect-coverage && npm run coverage:badges",
"coverage:badges": "./node_modules/.bin/jest-coverage-badges --output coverage-badges",
"release": "standard-version",
"release:minor": "standard-version --release-as minor",
"release:patch": "standard-version --release-as patch",
"release:major": "standard-version --release-as major"
},
"dependencies": {
"chalk": "^4.1.2",
"commander": "^9.0.0",
"dedent": "^0.7.0",
"detect-package-manager": "^2.0.1",
"express-list-endpoints": "^6.0.0",
"openapi-types": "^10.0.0",
"webpack": "^5.0.0"
},
"peerDependencies": {
"@medusajs/medusa": "^1.3.X",
"awilix": "^4.2.3",
"express": "^4.17.2",
"medusa-core-utils": "^1.1.31",
"medusa-interfaces": "^1.2.1",
"reflect-metadata": "^0.1.13",
"typeorm": "^0.2.41"
},
"devDependencies": {
"@appnest/readme": "^1.2.7",
"@commitlint/cli": "^16.1.0",
"@commitlint/config-angular": "^16.0.0",
"@commitlint/config-conventional": "^16.0.0",
"@commitlint/prompt-cli": "^16.1.0",
"@medusajs/medusa": "^1.3.x",
"@types/express": "^4.17.13",
"@types/jest": "^27.4.0",
"@types/node": "^17.0.15",
"@typescript-eslint/eslint-plugin": "^5.10.2",
"@typescript-eslint/parser": "^5.10.2",
"awilix": "^4.2.3",
"class-validator": "^0.13.1",
"core-js": "^3.21.0",
"docsify": "^4.12.2",
"dotenv": "^16.0.0",
"eslint": "^8.8.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"express": "^4.17.2",
"husky": "^7.0.0",
"jest": "^27.5.0",
"jest-coverage-badges": "^1.1.2",
"medusa-core-utils": "^1.1.31",
"medusa-interfaces": "^1.2.1",
"mongoose": "^6.2.1",
"prettier": "^2.5.1",
"prom-client": "^12.0.0",
"reflect-metadata": "^0.1.13",
"regenerator-runtime": "^0.13.9",
"standard-version": "^9.3.2",
"swagger-parser": "^10.0.3",
"swagger-stats": "^0.99.2",
"ts-jest": "^27.1.3",
"ts-loader": "^9.2.6",
"ts-node": "^10.7.0",
"tslint": "~6.1.0",
"typedoc": "^0.22.11",
"typedoc-plugin-markdown": "^3.11.13",
"typedoc-plugin-missing-exports": "^0.22.6",
"typeorm": "^0.2.41",
"typescript": "^4.5.5"
}
}