forked from adrien2p/medusa-plugin-starter-ts
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
91 lines (90 loc) · 2.41 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
{
"name": "medusa-plugin-starter-ts",
"version": "1.0.0",
"description": "A plugin starter for medusa using typescript and pre-configured",
"main": "index.js",
"types": "index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/adrien2p/medusa-plugin-starter-ts"
},
"keywords": [
"medusa",
"medusajs",
"starter",
"typescript",
"plugin",
"ecommerce",
"e-commerce"
],
"author": "Adrien de Peretti <[email protected]>",
"license": "MIT",
"scripts": {
"clean": "./node_modules/.bin/rimraf services/ models/ migrations/ api/ subscribers/ index.js index.map.js",
"build": "npm run clean && tsc -p tsconfig.json",
"watch": "tsc --watch",
"test": "jest --coverage"
},
"devDependencies": {
"@medusajs/medusa": "^1.x",
"@types/express": "^4.17.13",
"@types/jest": "^27.4.0",
"@types/node": "^17.0.15",
"cross-env": "^7.0.3",
"eslint": "^8.8.0",
"jest": "^27.5.0",
"medusa-interfaces": "1.x",
"ts-jest": "^27.1.3",
"ts-loader": "^9.2.6",
"typescript": "^4.5.5",
"mongoose": "^6.2.0",
"rimraf": "^3.0.2",
"@types/supertest": "^2.0.12",
"@typescript-eslint/eslint-plugin": "^5.41.0",
"@typescript-eslint/parser": "^5.41.0",
"awilix": "^8.0.0",
"axios-mock-adapter": "^1.21.2",
"babel-preset-medusa-package": "^1.1.13",
"commitizen": "^4.2.4",
"cz-conventional-changelog": "3.3.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",
"medusa-extender": "^1.7.7",
"prettier": "^2.7.1",
"supertest": "^6.3.3",
"ts-node": "^10.9.1"
},
"peerDependencies": {
"medusa-interfaces": "latest",
"@medusajs/medusa": "latest"
},
"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",
"typeorm": "^0.2.41"
},
"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"
}