-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.15 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
{
"name": "@guilledk/leap-mock",
"repository": "guilledk/leap-mock",
"version": "0.4.0",
"description": "",
"main": "./build/shipMocker.js",
"types": "./build/index.d.ts",
"exports": {
".": {
"import": "./build/index.js"
},
"./esm": {
"import": "./build/index.js"
}
},
"type": "module",
"scripts": {
"start": "node build/shipMocker.js",
"build": "yarn && tsc && node scripts/create-dist-packages.mjs",
"test": "mocha",
"docker-build": "docker build -t guilledk/leap-mock:latest ."
},
"author": "",
"license": "ISC",
"dependencies": {
"@types/express": "^4.17.20",
"@types/ws": "^8.5.8",
"@wharfkit/antelope": "^1.0.10",
"async": "^3.2.4",
"axios": "^1.7.3",
"commander": "^11.1.0",
"express": "^4.18.2",
"node-fetch": "^3.3.2",
"ws": "^8.14.2",
"zod": "^3.23.8"
},
"devDependencies": {
"@types/async": "^3.2.16",
"@types/chai": "^4.3.17",
"@types/mocha": "^10.0.7",
"@types/node": "^18.11.13",
"chai": "^5.1.1",
"mocha": "^10.7.3",
"nodemon": "^2.0.22",
"ts-node": "^10.9.2",
"tsx": "^3.12.7",
"typescript": "^5.2.2"
}
}