-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
117 lines (117 loc) · 3.31 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
106
107
108
109
110
111
112
113
114
115
116
117
{
"name": "medusa-starter-default",
"version": "0.0.1",
"description": "A starter for Medusa projects.",
"author": "Sebastian Rindom <skrindom@gmail.com>",
"license": "MIT",
"keywords": [
"sqlite",
"postgres",
"typescript",
"ecommerce",
"headless",
"medusa"
],
"scripts": {
"clean": "./node_modules/.bin/rimraf dist",
"build": "npm run clean && tsc -p tsconfig.json",
"watch": "tsc --watch",
"test": "jest",
"seed": "medusa seed -f ./data/seed.json",
"start": "npm run build && medusa migrations run && medusa develop -p=8080",
"dev": "npm run build && medusa develop",
"dev:prod": "cross-env NODE_ENV=production npm run build && medusa start",
"build:admin": "medusa-admin build",
"migration:run": "npm run build && npx typeorm migration:run -d datasource.js",
"migration:generate": "npx typeorm migration:generate -d datasource.js"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.425.0",
"@aws-sdk/s3-request-presigner": "^3.425.0",
"@babel/preset-typescript": "^7.21.5",
"@google-cloud/local-auth": "^2.1.0",
"@medusajs/admin": "^7.1.3",
"@medusajs/cache-inmemory": "^1.8.7",
"@medusajs/cache-redis": "^1.8.7",
"@medusajs/event-bus-local": "^1.9.4",
"@medusajs/event-bus-redis": "^1.8.7",
"@medusajs/medusa": "1.16.1",
"@medusajs/medusa-cli": "^1.3.15",
"@types/node-fetch": "^2.6.6",
"async": "^3.2.4",
"axios": "^1.5.1",
"axios-cookiejar-support": "^4.0.7",
"babel-preset-medusa-package": "^1.1.19",
"body-parser": "^1.20.2",
"cors": "^2.8.5",
"express": "^4.18.2",
"google-auth-library": "^9.1.0",
"google-spreadsheet": "^4.1.0",
"googleapis": "^105.0.0",
"ky": "^1.0.1",
"ky-universal": "^0.12.0",
"medusa-file-s3": "^1.2.0",
"medusa-fulfillment-manual": "^1.1.37",
"medusa-interfaces": "^1.3.7",
"medusa-payment-manual": "^1.0.23",
"medusa-payment-stripe": "^6.0.0",
"medusa-plugin-meilisearch": "^2.0.7",
"medusa-plugin-segment": "^1.3.5",
"medusa-plugin-sendgrid": "^1.3.9",
"meilisearch": "^0.32.5",
"nanoid": "^5.0.1",
"node-fetch": "2",
"openai": "^3.2.1",
"tough-cookie": "^4.1.3",
"typeorm": "^0.3.16",
"ulid": "^2.3.0"
},
"devDependencies": {
"@babel/cli": "^7.21.5",
"@babel/core": "^7.22.1",
"@types/async": "^3.2.21",
"@types/express": "^4.17.17",
"@types/jest": "^29.5.2",
"@types/multer": "^1.4.8",
"@types/nanoid": "^3.0.0",
"@types/node": "^20.2.5",
"babel-preset-medusa-package": "^1.1.19",
"cross-env": "^7.0.3",
"eslint": "^8.41.0",
"jest": "^29.5.0",
"mongoose": "^7.2.2",
"rimraf": "^5.0.1",
"ts-jest": "^29.1.0",
"ts-loader": "^9.4.3",
"typescript": "^5.1.3"
},
"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"
},
"engines": {
"node": ">=18.0.0"
}
}