-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
60 lines (59 loc) · 1.58 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
{
"name": "@rsc-labs/medusa-price-history",
"version": "0.0.2",
"description": "The plugin which provides price history for variants. E.g. useful for Omnibus directive in EU",
"main": "dist/index.js",
"types": "./dist/index.d.ts",
"author": "RSC Labs (https://rsoftcon.com)",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/RSC-Labs/medusa-price-history"
},
"keywords": [
"medusa-price-history",
"medusa-plugin",
"medusajs",
"omnibus",
"ecommerce"
],
"scripts": {
"prebuild": "rimraf dist",
"build": "tsc --build",
"lint": "eslint \"{src,tests}/**/*.ts\""
},
"dependencies": {
"@medusajs/medusa": "^2.0.1",
"@medusajs/framework": "^2.0.1",
"@medusajs/admin-sdk": "^2.0.1",
"@mikro-orm/core": "5.9.7",
"@mikro-orm/knex": "5.9.7",
"@mikro-orm/migrations": "5.9.7",
"@mikro-orm/postgresql": "5.9.7",
"pg": "^8.13.0",
"@emotion/react": "^11.13.3",
"@emotion/styled": "^11.13.0",
"@mui/material": "^6.1.1"
},
"devDependencies": {
"@types/node": "^22.8.6",
"@typescript-eslint/eslint-plugin": "^6.19.1",
"@typescript-eslint/parser": "^6.19.1",
"awilix": "^10.0.1",
"eslint": "^8.56.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-n": "^16.6.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.1.1",
"rimraf": "^5.0.5",
"typescript": "^5.3.3"
},
"peerDependencies": {
"@medusajs/medusa": "^2.0.0",
"awilix": "^10.0.1"
},
"engines": {
"node": ">=20"
}
}