-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 1.03 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
{
"name": "xfn-api",
"version": "1.0.0",
"type": "module",
"main": "bin/main.js",
"scripts": {
"noop": "tail -f /dev/null",
"shell": "bash",
"check": "tsc -w --incremental --noEmit",
"build": "tsc",
"start": "node bin/main.js",
"dev": "tsc && concurrently \"nodemon -L bin/main.js | pino-pretty\" \"tsc -w --incremental\"",
"clean": "find bin/ lib/ -name '*.js' -delete",
"test-sample": "cat samples/functionIO.yaml | curl -H 'Content-type: application/yaml' -X POST --data-binary @- http://0.0.0.0:3000/1/xfn | yq '.desired'"
},
"dependencies": {
"@fastify/autoload": "5.7.1",
"@fastify/sensible": "5.2.0",
"@fastify/type-provider-typebox": "2.4.0",
"@kubernetes/client-node": "0.18.1",
"@sinclair/typebox": "0.25.24",
"fastify": "4.14.1",
"js-yaml": "4.1.0",
"nconf": "0.12.0"
},
"devDependencies": {
"@types/nconf": "0.10.3",
"@types/node": "^18",
"concurrently": "7.6.0",
"nodemon": "2.0.21",
"pino-pretty": "10.0.0",
"typescript": "5.0.2"
}
}