-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 2.18 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
{
"name": "vendure-mpesa-plugin",
"version": "0.0.12",
"description": "Accept Mpesa payments on your Vendure store",
"repository": {
"type": "git",
"url": "[email protected]:barakamwakisha/vendure-mpesa-plugin.git"
},
"author": "Baraka Mwakisha <[email protected]>",
"license": "MIT",
"private": false,
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"README.md"
],
"scripts": {
"fix": "yarn fix:eslint && yarn fix:prettier",
"fix:eslint": "eslint --fix \"**/*.*\"",
"fix:prettier": "prettier --write \"**/*.*\"",
"lint": "yarn lint:eslint && yarn lint:prettier",
"lint:eslint": "eslint \"**/*.*\"",
"lint:prettier": "prettier --check \"**/*.*\"",
"prepare": "husky install",
"start": "rimraf __data__ && yarn ts-node e2e/dev-server.ts",
"build": "rimraf dist && tsc && copyfiles -u 1 'src/ui/**/*' dist",
"test": "vitest run",
"release": "yarn build && changeset publish"
},
"devDependencies": {
"@changesets/cli": "^2.27.1",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"@vendure/admin-ui-plugin": "^2.1.6",
"@vendure/asset-server-plugin": "^2.1.6",
"@vendure/core": "^2.1.6",
"@vendure/testing": "^2.1.6",
"@vendure/ui-devkit": "^2.1.6",
"copyfiles": "^2.4.1",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-prettier": "^5.1.3",
"husky": "^8.0.0",
"lint-staged": "^15.2.1",
"msw": "^2.1.7",
"prettier": "^3.2.5",
"rimraf": "^5.0.5",
"ts-node": "^10.9.2",
"typescript": "^5.3.3",
"vitest": "^1.2.2",
"zod": "^3.22.4"
},
"dependencies": {
"axios": "^1.6.7",
"libphonenumber-js": "^1.10.54"
},
"engines": {
"npm": "please-use-yarn",
"yarn": ">= 1.19.1"
},
"lint-staged": {
"**/*.*": [
"yarn fix"
]
}
}