-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.55 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.55 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
{
"name": "@openfn/lightning-mock",
"version": "2.4.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/bodyparser": "^6.1.0",
"@koa/router": "^15.4.0",
"@openfn/engine-multi": "workspace:*",
"@openfn/language-collections": "0.8.3",
"@openfn/lexicon": "workspace:^",
"@openfn/logger": "workspace:*",
"@openfn/project": "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.4",
"koa-logger": "^4.0.0",
"phoenix": "^1.8.5",
"ws": "^8.19.0"
},
"devDependencies": {
"@types/koa": "^2.15.0",
"@types/koa-websocket": "^5.0.11",
"@types/koa__router": "^12.0.5",
"@types/node": "^18.19.130",
"@types/nodemon": "1.19.3",
"@types/phoenix": "^1.6.7",
"@types/yargs": "^17.0.35",
"ava": "5.3.1",
"koa-websocket": "^7.0.0",
"query-string": "^8.2.0",
"tslib": "^2.8.1",
"tsup": "^8.5.1",
"typescript": "^4.9.5",
"yargs": "^17.7.2"
}
}