-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
111 lines (111 loc) · 3.24 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
{
"name": "@weframetechsolutions/medusa-order-affiliate",
"version": "1.0.7",
"description": "Medusa Plugin To Handling Affiliate Commission On Each Order Payment",
"author": "weframetechsolutions (https://github.com/we-frame)",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/we-frame/medusa-order-affiliate"
},
"keywords": [
"affiliate",
"commission",
"weframe",
"paypal",
"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",
"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",
"prepare": "cross-env NODE_ENV=production npm run build:server && medusa-admin bundle"
},
"dependencies": {
"@medusajs/admin": "^7.1.15",
"@medusajs/cache-inmemory": "1.8.11",
"@medusajs/cache-redis": "^1.9.2",
"@medusajs/event-bus-local": "1.9.9",
"@medusajs/event-bus-redis": "^1.8.14",
"@medusajs/file-local": "1.0.4",
"@medusajs/icons": "^1.2.2",
"@medusajs/medusa": "^1.20.9",
"@medusajs/ui": "^3.0.1",
"@tanstack/react-query": "4.22.0",
"axios": "^1.7.3",
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"dotenv": "16.3.1",
"express": "^4.19.2",
"medusa-fulfillment-manual": "1.1.41",
"medusa-interfaces": "1.3.10",
"medusa-payment-manual": "1.0.25",
"medusa-payment-stripe": "6.0.10",
"prism-react-renderer": "^2.0.4",
"react-icons": "^5.2.1",
"react-router-dom": "^6.13.0",
"stripe": "^16.5.0",
"typeorm": "0.3.16",
"uuid": "^10.0.0"
},
"devDependencies": {
"@babel/cli": "^7.14.3",
"@babel/core": "^7.14.3",
"@babel/preset-typescript": "^7.21.4",
"@medusajs/medusa-cli": "1.3.23",
"@stdlib/number-float64-base-normalize": "0.0.8",
"@types/express": "^4.17.13",
"@types/jest": "^27.4.0",
"@types/mime": "1.3.5",
"@types/node": "^17.0.8",
"@types/uuid": "^10.0.0",
"babel-preset-medusa-package": "^1.1.19",
"cross-env": "^7.0.3",
"eslint": "^6.8.0",
"jest": "^27.3.1",
"rimraf": "^3.0.2",
"ts-jest": "^27.0.7",
"ts-loader": "^9.2.6",
"typescript": "^4.5.2"
},
"peerDependencies": {
"react": "^18.2.0",
"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"
},
"resolutions": {
"glob": "^7.1.6"
}
}