-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
57 lines (57 loc) · 1.46 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
{
"name": "@perseidesjs/medusa-plugin-otp",
"version": "1.1.0",
"description": "Implements OTP for your next Medusa project",
"author": "adevinwild",
"license": "MIT",
"main": "dist/index.js",
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "https://github.com/perseidesjs/medusa-plugin-otp.git"
},
"keywords": [
"medusa",
"medusa-plugin",
"otp"
],
"scripts": {
"clean": "cross-env ./node_modules/.bin/rimraf dist",
"build": "cross-env npm run clean && tsc -p tsconfig.json",
"watch": "cross-env tsc --watch",
"test": "cross-env jest",
"prettier:fix": "prettier --write ./src/**/*.ts"
},
"dependencies": {
"@medusajs/medusa": "^1.20.7",
"body-parser": "^1.19.0",
"express": "^4.17.2",
"medusa-core-utils": "^1.2.2",
"typeorm": "^0.3.16"
},
"peerDependencies": {
"medusa-interfaces": "1.x"
},
"devDependencies": {
"@babel/cli": "^7.14.3",
"@babel/core": "^7.14.3",
"@babel/preset-typescript": "^7.21.4",
"@stdlib/number-float64-base-normalize": "0.0.8",
"@types/express": "^4.17.13",
"@types/jest": "^27.4.0",
"@types/mime": "1.3.5",
"@types/node": "^17.0.8",
"babel-preset-medusa-package": "^1.1.19",
"cross-env": "^7.0.3",
"eslint": "^6.8.0",
"jest": "^27.3.1",
"prettier": "^3.3.2",
"rimraf": "^3.0.2",
"ts-jest": "^27.0.7",
"ts-loader": "^9.2.6",
"typescript": "^4.5.2"
},
"packageManager": "[email protected]"
}