-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 2.14 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 2.14 KB
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
{
"name": "fashion-starter-medusa",
"version": "2.0.0",
"description": "A starter for Medusa projects.",
"author": "Medusa (https://medusajs.com)",
"license": "MIT",
"keywords": [
"sqlite",
"postgres",
"typescript",
"ecommerce",
"headless",
"medusa"
],
"scripts": {
"build": "medusa build",
"seed": "medusa exec ./src/scripts/seed.ts",
"start": "medusa start",
"dev": "medusa develop",
"emails:dev": "email dev --dir=src/modules/resend/emails",
"test:integration:http": "TEST_TYPE=integration:http NODE_OPTIONS=--experimental-vm-modules jest --silent=false --runInBand --forceExit",
"test:integration:modules": "TEST_TYPE=integration:modules NODE_OPTIONS=--experimental-vm-modules jest --silent --runInBand --forceExit",
"test:unit": "TEST_TYPE=unit NODE_OPTIONS=--experimental-vm-modules jest --silent --runInBand --forceExit"
},
"dependencies": {
"@medusajs/admin-sdk": "2.6.1",
"@medusajs/cli": "2.6.1",
"@medusajs/framework": "2.6.1",
"@medusajs/medusa": "2.6.1",
"@mikro-orm/core": "6.4.3",
"@mikro-orm/knex": "6.4.3",
"@mikro-orm/migrations": "6.4.3",
"@mikro-orm/postgresql": "6.4.3",
"@react-email/components": "^0.0.33",
"@tanstack/react-query": "5.64.2",
"awilix": "^8.0.1",
"lodash": "^4.17.21",
"meilisearch": "0.47.0",
"node-addon-api": "^8.3.1",
"pg": "^8.13.3",
"react-dropzone": "^14.3.8",
"resend": "^4.1.2",
"zod": "3.22.4"
},
"devDependencies": {
"@medusajs/test-utils": "2.6.1",
"@mikro-orm/cli": "6.4.3",
"@swc/core": "1.5.7",
"@swc/jest": "^0.2.37",
"@tanstack/eslint-plugin-query": "5.64.2",
"@types/jest": "^29.5.14",
"@types/lodash": "^4.17.16",
"@types/node": "^22.13.10",
"@types/react": "^18.3.18",
"@types/react-dom": "^18.3.5",
"eslint": "^9.17.0",
"jest": "^29.7.0",
"node-gyp": "^11.2.0",
"prop-types": "^15.8.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-email": "3.0.7",
"ts-node": "^10.9.2",
"typescript": "^5.8.2",
"vite": "^5.4.14"
},
"engines": {
"node": ">=20"
},
"packageManager": "yarn@4.7.0"
}