-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.61 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.61 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
{
"name": "@openfn/lightning-mock",
"version": "2.3.10",
"private": true,
"description": "A mock Lightning server",
"main": "dist/index.js",
"type": "module",
"scripts": {
"test": "pnpm ava --serial",
"test:types": "pnpm tsc --noEmit --project tsconfig.json",
"build": "tsup --config ../../tsup.config.js src/index.ts --no-splitting",
"build:watch": "pnpm build --watch",
"start": "node --loader @swc-node/register/esm src/start.ts",
"pack": "pnpm pack --pack-destination ../../dist"
},
"author": "Open Function Group <admin@openfn.org>",
"license": "ISC",
"dependencies": {
"@koa/router": "^12.0.2",
"@openfn/engine-multi": "workspace:*",
"@openfn/language-collections": "0.8.0",
"@openfn/lexicon": "workspace:^",
"@openfn/logger": "workspace:*",
"@openfn/runtime": "workspace:*",
"@types/koa-logger": "^3.1.5",
"@types/ws": "^8.18.1",
"fast-safe-stringify": "^2.1.1",
"jose": "^4.15.9",
"koa": "^2.16.2",
"koa-bodyparser": "^4.4.1",
"koa-logger": "^3.2.1",
"phoenix": "^1.8.1",
"ws": "^8.18.3"
},
"devDependencies": {
"@types/koa": "^2.15.0",
"@types/koa-bodyparser": "^4.3.12",
"@types/koa-route": "^3.2.8",
"@types/koa-websocket": "^5.0.10",
"@types/koa__router": "^12.0.4",
"@types/node": "^18.19.127",
"@types/nodemon": "1.19.3",
"@types/phoenix": "^1.6.6",
"@types/yargs": "^17.0.33",
"ava": "5.1.0",
"koa-route": "^3.2.0",
"koa-websocket": "^7.0.0",
"query-string": "^8.2.0",
"tslib": "^2.8.1",
"tsup": "^6.7.0",
"typescript": "^4.9.5",
"yargs": "^17.7.2"
}
}