generated from SGFGOV/medusa-plugin-starter-ts
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
103 lines (103 loc) · 2.54 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
{
"name": "medusa-plugin-whatsapp",
"version": "1.2.33",
"description": "A plugin to integrate with medusa with whatsapp",
"main": "index.js",
"types": "index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/SGFGOV/medusa-plugin-whatsapp"
},
"keywords": [
"medusa",
"medusajs",
"starter",
"typescript",
"plugin",
"ecommerce",
"e-commerce",
"whastaspp",
"messaging",
"notifications",
"medusa-plugin"
],
"author": "Govind Diwakar <[email protected]>",
"license": "MIT",
"scripts": {
"clean": "./node_modules/.bin/rimraf dist/ services/ models/ migrations/ api/ utils/ subscribers/ types/ index.js index.map.js",
"build": "npm run clean && tsc -p tsconfig.json",
"watch": "tsc --watch",
"test": "jest --coverage"
},
"devDependencies": {
"@medusajs/medusa": "^1.20.2",
"@types/express": "^4.17.13",
"@types/jest": "^27.4.0",
"@types/node": "^22.10.1",
"@types/supertest": "^2.0.12",
"@typescript-eslint/eslint-plugin": "^5.41.0",
"@typescript-eslint/parser": "^5.41.0",
"add": "^2.0.6",
"awilix": "^8.0.0",
"cross-env": "^7.0.3",
"dotenv": "^16.0.3",
"eslint": "^8.8.0",
"eslint-config-google": "^0.14.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-file-progress": "^1.3.0",
"eslint-plugin-prettier": "^4.2.1",
"ioredis": "^5.3.2",
"jest": "^27.5.0",
"medusa-interfaces": "1.x",
"mongoose": "^6.2.0",
"prettier": "^2.7.1",
"rimraf": "^3.0.2",
"supertest": "^6.3.3",
"ts-jest": "^27.1.3",
"ts-loader": "^9.2.6",
"typeorm": "^0.3.16",
"typescript": "^4.5.5"
},
"peerDependencies": {
"@medusajs/medusa": "latest",
"medusa-interfaces": "latest",
"typeorm": "^0.3.16"
},
"dependencies": {
"body-parser": "^1.19.1",
"cors": "^2.8.5",
"express": "^4.17.2",
"medusa-core-utils": "^1.1.31",
"medusa-test-utils": "^1.1.37",
"twilio": "3.84.1"
},
"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",
"setupFiles": [
"dotenv/config"
]
}
}