-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
91 lines (91 loc) · 2.37 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
{
"name": "@rsc-labs/medusa-documents",
"version": "0.8.4",
"description": "Generate documents from Medusa",
"main": "dist/index.js",
"author": "RSC Labs (https://rsoftcon.com)",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/RSC-Labs/medusa-documents"
},
"keywords": [
"medusa-plugin",
"medusa-plugin-other",
"medusa-plugin-documents",
"documents",
"invoice",
"pdf"
],
"scripts": {
"clean": "cross-env ./node_modules/.bin/rimraf dist",
"copy-assets": "cp -rv src/assets dist/assets",
"build": "cross-env npm run clean && npm run build:server && npm run build:admin",
"build:server": "cross-env npm run clean && tsc -p tsconfig.json",
"build:admin": "cross-env medusa-admin build",
"prepare": "cross-env NODE_ENV=production npm run build:server && npm run copy-assets && medusa-admin bundle"
},
"dependencies": {
"@medusajs/admin": "7.1.17",
"@medusajs/ui": "3.0.1",
"@medusajs/icons": "1.2.2",
"@medusajs/utils": "1.11.11",
"@tanstack/react-query": "4.22",
"medusa-interfaces": "^1.3.7",
"medusa-react": "9.0.18",
"@mui/material": "^5.15.3",
"typeorm": "^0.3.16",
"react-hook-form": "^7.49.2",
"@emotion/react": "^11.11.3",
"@emotion/styled": "11.13.0",
"lodash": "4.17.21",
"pdfkit": "0.15.0",
"moment": "^2.30.1",
"i18next": "23.15.1"
},
"devDependencies": {
"@babel/cli": "^7.14.3",
"@babel/core": "^7.14.3",
"@medusajs/medusa": "1.20.6",
"@types/express": "^4.17.13",
"babel-preset-medusa-package": "^1.1.19",
"cross-env": "^7.0.3",
"eslint": "^6.8.0",
"rimraf": "^3.0.2",
"typescript": "^4.5.2"
},
"peerDependencies": {
"@medusajs/medusa": "1.20.6",
"react": "^18.2.0",
"react-router-dom": "^6.13.0"
},
"resolutions": {
"@types/mime": "3.0.4"
},
"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"
}
}