-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
106 lines (106 loc) · 2.64 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
{
"name": "medusa-plugin-file-cloud-storage",
"version": "1.5.2",
"description": "A Medusa plugin to store files in Google Cloud Storage",
"main": "index.js",
"keywords": [
"medusa-plugin",
"cloud-storage",
"google-cloud",
"gcp",
"typescript",
"ecommerce",
"headless",
"medusa"
],
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "https://github.com/xponential-asia/medusa-plugin-file-cloud-storage.git"
},
"scripts": {
"clean": "cross-env rimraf dist",
"build": "cross-env npm run clean && tsc -p tsconfig.json",
"watch": "cross-env tsc --watch",
"test:unit": "jest --config=jest.config.ts --coverage --passWithNoTests",
"prepare-commit": "husky install",
"prepare": "cross-env NODE_ENV=production npm run build"
},
"dependencies": {
"@google-cloud/storage": "^7.6.0",
"@medusajs/medusa": "^1.17.3",
"@medusajs/types": "^1.11.5",
"@medusajs/utils": "^1.11.0",
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"dotenv": "16.0.3",
"medusa-interfaces": "^1.3.7",
"ts-node": "^10.9.1",
"typeorm": "^0.3.16",
"uuid": "^9.0.1"
},
"devDependencies": {
"@babel/cli": "^7.14.3",
"@babel/core": "^7.14.3",
"@babel/preset-typescript": "^7.21.4",
"@commitlint/cli": "^18.2.0",
"@commitlint/config-conventional": "^18.1.0",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@semantic-release/npm": "^11.0.0",
"@types/express": "^4.17.13",
"@types/jest": "^27.4.0",
"@types/multer": "^1.4.7",
"@types/node": "^17.0.8",
"babel-preset-medusa-package": "^1.1.13",
"codecov": "^3.8.3",
"cross-env": "^7.0.3",
"eslint": "^6.8.0",
"husky": "^8.0.0",
"jest": "^27.3.1",
"rimraf": "^3.0.2",
"semantic-release": "^22.0.6",
"ts-jest": "^27.0.7",
"ts-loader": "^9.2.6",
"typescript": "^4.5.2"
},
"peerDependencies": {
"@medusajs/medusa": "^1.16.0"
},
"jest": {
"collectCoverage": true,
"coverageReporters": [
"text",
"cobertura"
],
"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"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
}
}