-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 1.77 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
{
"name": "medusa-plugin-micro-analytics",
"version": "0.1.0",
"description": "A plugin for Medusa that adds a micro analytics dashboard to the admin ui.",
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/adevinwild/medusa-plugin-micro-analytics.git"
},
"files": [
"dist"
],
"author": "adevinwild",
"license": "MIT",
"scripts": {
"prepublishOnly": "cross-env NODE_ENV=production tsc --build",
"test": "jest --passWithNoTests src",
"build": "rimraf dist && tsc -p tsconfig.server.json && medusa-admin bundle",
"watch": "tsc -p tsconfig.server.json --watch"
},
"dependencies": {
"@medusajs/modules-sdk": "^1.8.8",
"@medusajs/utils": "^1.9.4",
"body-parser": "^1.19.0",
"class-transformer": "^0.5.1",
"class-validator": "^0.14.0",
"clsx": "^2.0.0",
"cors": "^2.8.5",
"express": "^4.17.2",
"lodash": "^4.17.21",
"lucide-react": "^0.274.0",
"medusa-react": "^9.0.4",
"recharts": "^2.8.0"
},
"peerDependencies": {
"@medusajs/admin": "^7.0.1",
"@medusajs/medusa": "^1.12.0"
},
"devDependencies": {
"@medusajs/admin": "^7.0.1",
"@medusajs/medusa": "^1.12.0",
"@medusajs/types": "^1.10.0",
"@medusajs/ui": "^1.0.0",
"@types/cors": "^2.8.13",
"@types/express": "^4.17.17",
"@types/jest": "^29.5.4",
"@types/uuid": "^9.0.2",
"jest": "^25.5.4",
"medusa-core-utils": "^1.2.0",
"medusa-interfaces": "^1.3.7",
"medusa-test-utils": "^1.1.41",
"rimraf": "^5.0.1",
"ts-jest": "^25.5.1",
"typeorm": "^0.3.16",
"typescript": "^4.9.5",
"uuid": "^9.0.0"
},
"keywords": [
"medusa-plugin",
"medusa-plugin-analytics",
"medusa-plugin-micro-analytics",
"medusa analytics",
"medusa dashboard"
]
}