-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.84 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.84 KB
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
{
"name": "@getverdict/mock-bridge",
"version": "1.3.0",
"description": "Mock Shopify App Bridge for testing and development",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"mock-bridge": "dist/cli/index.js"
},
"scripts": {
"build": "tsc && npm run build:admin-frame && npm run build:app-bridge",
"build:admin-frame": "cd admin-frame && npm run build",
"build:app-bridge": "cd app-bridge && npm run build",
"dev": "concurrently \"ts-node -r dotenv/config src/server/dev.ts\" \"npm run dev:app-bridge\" \"npm run dev:admin-frame\"",
"dev:app-bridge": "cd app-bridge && npm run watch",
"dev:admin-frame": "cd admin-frame && npm run dev",
"start": "node dist/server/index.js",
"watch": "tsc --watch",
"clean": "rm -rf dist",
"prepare": "cd admin-frame && npm install --legacy-peer-deps && cd ../app-bridge && npm install && cd .. && npm run build"
},
"keywords": [
"shopify",
"app-bridge",
"mock",
"testing",
"development"
],
"author": "Verdict",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/ctrlaltdylan/mock-bridge.git"
},
"dependencies": {
"body-parser": "^1.20.2",
"chalk": "^4.1.2",
"commander": "^11.1.0",
"cors": "^2.8.5",
"express": "^4.18.2",
"jsonwebtoken": "^9.0.2",
"http-proxy-middleware": "^3.0.3",
"uuid": "^9.0.1"
},
"devDependencies": {
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/jsonwebtoken": "^9.0.5",
"@types/node": "^20.10.5",
"@types/uuid": "^9.0.7",
"concurrently": "^9.2.1",
"dotenv": "^17.2.3",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
},
"engines": {
"node": ">=18.0.0"
},
"files": [
"dist/",
"admin-frame/dist/",
"app-bridge/dist/"
],
"publishConfig": {
"access": "public"
}
}