-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
105 lines (105 loc) · 3.03 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
{
"name": "medusa-email-confirmation-plugin",
"version": "0.0.8",
"description": "medusa-email-confirmation-plugin is a Medusa plugin that adds obligatory requirement for customers to confirm their email used for sign up to Medusa ecommerce stores.",
"repository": {
"type": "git",
"url": "https://github.com/KreischerPanoptic/medusa-email-confirmation-plugin"
},
"main": "dist/index.js",
"homepage:": "https://github.com/KreischerPanoptic/medusa-email-confirmation-plugin",
"author": "Dennis Soroka",
"license": "MIT",
"keywords": [
"typescript",
"ecommerce",
"headless",
"medusa",
"medusa-plugin",
"medusa-plugin-admin",
"medusa-plugin-other",
"medusa-plugin-email",
"medusa-plugin-customer",
"medusa-plugin-email-confirmation",
"email",
"email-confirmation",
"email confirmation"
],
"scripts": {
"clean": "cross-env ./node_modules/.bin/rimraf dist",
"build": "rimraf dist && tsc -p tsconfig.build.json",
"prepare": "cross-env NODE_ENV=production yarn build",
"dev": "tsc -p tsconfig.build.json --watch",
"test:watch": "jest --watch",
"test": "jest --ci --coverage",
"lint": "eslint --ignore-path .gitignore . && prettier --check .",
"lint:fix": "eslint --ignore-path .gitignore . --fix && prettier --write ."
},
"dependencies": {
"medusa-interfaces": "^1.3.9",
"moment": "^2.30.1",
"zod": "^3.23.4"
},
"devDependencies": {
"@medusajs/admin": "^7.1.15",
"@medusajs/icons": "^1.0.0",
"@medusajs/medusa": "^1.20.8",
"@medusajs/medusa-cli": "^1.3.22",
"@medusajs/ui": "^3.0.1",
"@types/express": "^4.17.21",
"@types/jest": "^29.5.12",
"@types/node": "^16.18.39",
"awilix": "^8.0.1",
"cors": "^2.8.5",
"cross-env": "^7.0.3",
"dotenv": "16.4.5",
"express": "^4.17.2",
"jest": "^29.7.0",
"msw": "^2.2.14",
"rimraf": "^6.0.1",
"shx": "^0.3.4",
"ts-jest": "^29.1.1",
"typescript": "5.5.4"
},
"peerDependenciesMeta": {
"medusa-react": {
"optional": true
}
},
"peerDependencies": {
"@medusajs/admin": "^7.0.0",
"@medusajs/icons": "^1.1.0",
"@medusajs/medusa": ">= 1.18.0 < 2",
"@medusajs/ui": "^1.0.0",
"medusa-react": "^9.0.4",
"react": "^18.0.0",
"react-dom": "^18.0.0"
},
"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"
},
"packageManager": "yarn@1.22.22"
}