-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
115 lines (115 loc) · 3.25 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
{
"name": "medusa-fulfillment-inpost",
"version": "0.2.0",
"description": "Inpost fulfillment provider for MedusaJS.",
"author": "SpearDevs <[email protected]>",
"contributors": [
{
"name": "Tomek Siwarski",
"email": "[email protected]"
},
{
"name": "Igor Serwin",
"email": "[email protected]"
}
],
"repository": {
"type": "git",
"url": "https://github.com/SpearDevs/medusa-fulfillment-inpost.git"
},
"license": "MIT",
"keywords": [
"inpost",
"medusa-plugin",
"medusa-plugin-shipping",
"ecommerce",
"headless",
"medusa"
],
"scripts": {
"clean": "cross-env ./node_modules/.bin/rimraf dist",
"build": "cross-env npm run clean && npm run build:server && npm run build:admin",
"build:server": "cross-env npm run clean && tsc -p tsconfig.server.json",
"build:admin": "cross-env medusa-admin build",
"prepare": "cross-env NODE_ENV=production npm run build:server && medusa-admin bundle",
"watch": "cross-env tsc --watch",
"test": "cross-env jest",
"seed": "cross-env medusa seed -f ./data/seed.json",
"start": "cross-env npm run build && medusa start",
"start:custom": "cross-env npm run build && node --preserve-symlinks --trace-warnings index.js",
"dev": "cross-env npm run build:server && medusa develop"
},
"dependencies": {},
"devDependencies": {
"@babel/cli": "^7.14.3",
"@babel/core": "^7.14.3",
"@babel/preset-typescript": "^7.21.4",
"@medusajs/admin": "^7.1.5",
"@medusajs/cache-inmemory": "^1.8.8",
"@medusajs/cache-redis": "^1.8.8",
"@medusajs/event-bus-local": "^1.9.6",
"@medusajs/event-bus-redis": "^1.8.9",
"@medusajs/file-local": "^1.0.2",
"@medusajs/icons": "^1.1.0",
"@medusajs/medusa": "1.19",
"@medusajs/medusa-cli": "^1.3.21",
"@tanstack/react-query": "^4.22.0",
"@types/express": "^4.17.2",
"@types/jest": "^27.4.0",
"@types/node": "^17.0.8",
"babel-preset-medusa-package": "^1.1.13",
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"cross-env": "^7.0.3",
"dotenv": "^16.0.3",
"eslint": "^6.8.0",
"express": "^4.17.2",
"jest": "^27.3.1",
"medusa-interfaces": "^1.3.8",
"medusa-payment-manual": "^1.0.24",
"mongoose": "^8.0.4",
"prism-react-renderer": "^2.0.4",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"rimraf": "^3.0.2",
"ts-jest": "^27.0.7",
"ts-loader": "^9.2.6",
"typeorm": "^0.3.16",
"typescript": "^4.5.2"
},
"peerDependencies": {
"@medusajs/admin": "^7.1.17",
"@medusajs/medusa": "^1.20.10",
"@medusajs/ui": "^2.2.4",
"axios": "^1.6.5",
"medusa-react": "^9.0.13",
"react-router-dom": "^6.13.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": "[email protected]"
}