-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
40 lines (40 loc) · 1.04 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
{
"name": "vendure-phone-auth-plugin",
"version": "1.0.2",
"description": "A Vendure plugin which adds phone authentication to the storefront",
"author": "Rahul Tanwar <mr.rahultanwar@gmail.com>",
"repository": "https://github.com/iamrahultanwar/vendure-phone-auth-plugin",
"license": "MIT",
"private": false,
"engines": {
"node": ">=16.0.0"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"README.md"
],
"scripts": {
"start": "yarn ts-node test/dev-server.ts",
"build": "rimraf dist && tsc",
"test": "jest --preset=\"ts-jest\""
},
"devDependencies": {
"@types/jest": "29.4.0",
"@types/otp-generator": "^4.0.0",
"@vendure/admin-ui-plugin": "1.9.3",
"@vendure/asset-server-plugin": "1.9.3",
"@vendure/core": "1.9.3",
"@vendure/testing": "1.9.3",
"@vendure/ui-devkit": "1.9.3",
"jest": "29.4.3",
"rimraf": "^4.1.2",
"ts-jest": "29.0.5",
"ts-node": "10.9.1",
"typescript": "4.9.5"
},
"dependencies": {
"otp-generator": "^4.0.1"
}
}