-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
56 lines (56 loc) · 1.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
{
"name": "@perseidesjs/medusa-plugin-rate-limit",
"version": "2.0.2",
"description": "A simple rate-limit middleware for Medusa",
"author": "adevinwild",
"license": "MIT",
"main": "dist/index.js",
"repository": {
"type": "git",
"url": "https://github.com/perseidesjs/medusa-plugin-rate-limit.git"
},
"keywords": [
"medusa",
"medusa-plugin",
"rate-limit",
"rate-limiting"
],
"files": [
"dist"
],
"engines": {
"node": ">=20"
},
"scripts": {
"test": "jest --silent --runInBand --forceExit",
"build": "rimraf dist && tsc --build ./tsconfig.json",
"build:publish": "rimraf dist && tsc --build ./tsconfig.build.json",
"watch": "tsc --watch",
"prettier:fix": "prettier --write \"src/**/*.ts\"",
"lint:fix": "eslint \"src/**/*.ts\""
},
"devDependencies": {
"@epic-web/config": "^1.12.0",
"@medusajs/framework": "^2.1.2",
"@mikro-orm/core": "5.9.7",
"@mikro-orm/migrations": "5.9.7",
"@mikro-orm/postgresql": "5.9.7",
"@swc/core": "^1.7.26",
"@swc/jest": "^0.2.36",
"@types/jest": "^29.5.13",
"@types/supertest": "^6.0.2",
"ajv": "^8.17.1",
"awilix": "^8.0.1",
"cross-env": "^5.2.1",
"eslint": "^9.12.0",
"express": "^4.21.0",
"jest": "^29.7.0",
"prettier": "^3.3.3",
"rimraf": "^5.0.1",
"supertest": "^7.0.0",
"typescript": "^5.3.3"
},
"peerDependencies": {
"@medusajs/framework": "^2.1.2"
}
}