-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
64 lines (64 loc) · 2.1 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
{
"name": "medusa-starter-default",
"version": "0.0.1",
"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",
"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",
"db:init": "yarn run db:migrate && yarn run db:sync-links && yarn run db:seed",
"db:rollback": "medusa db:rollback",
"db:sync-links": "medusa db:sync-links",
"db:migrate": "medusa db:migrate",
"db:seed": "medusa exec ./src/scripts/seed.ts"
},
"dependencies": {
"@medusajs/admin-sdk": "2.1.0",
"@medusajs/cli": "2.1.0",
"@medusajs/framework": "2.1.0",
"@medusajs/medusa": "2.1.0",
"@mikro-orm/core": "5.9.7",
"@mikro-orm/knex": "5.9.7",
"@mikro-orm/migrations": "5.9.7",
"@mikro-orm/postgresql": "5.9.7",
"awilix": "8.0.1",
"pg": "8.13.0",
"resend": "^4.0.0"
},
"devDependencies": {
"@medusajs/test-utils": "2.1.0",
"@mikro-orm/cli": "5.9.7",
"@swc/core": "1.7.35",
"@swc/jest": "0.2.36",
"@types/jest": "29.5.13",
"@types/node": "22.7.5",
"@types/react": "18.3.11",
"@types/react-dom": "18.3.0",
"jest": "29.7.0",
"prettier": "^3.3.3",
"prop-types": "15.8.1",
"react": "18.3.1",
"react-dom": "18.3.1",
"ts-node": "10.9.2",
"typescript": "5.6.3",
"vite": "5.4.8"
},
"engines": {
"node": ">=20"
},
"packageManager": "[email protected]+sha512.f26f951f67de0c6a33ee381e5ff364709c87e70eb5e65c694e4facde3512f1fa80b8679e6ba31ce7d340fbb46f08dd683af9457e240f25a204be7427940d767e"
}