-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
63 lines (63 loc) · 1.72 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "@eik/service",
"version": "2.0.160",
"description": "Eik REST API as a standalone HTTP service",
"type": "module",
"main": "./lib/main.js",
"bin": {
"eik-server": "bin/eik-server.js",
"eik-service": "bin/eik-server.js",
"service": "bin/eik-server.js"
},
"scripts": {
"start": "node ./bin/eik-server.js | pino-pretty",
"test": "LOG_LEVEL=fatal tap ./test --disable-coverage --allow-empty-coverage --serial=test",
"test:snapshots": "LOG_LEVEL=fatal tap --snapshot --disable-coverage --allow-empty-coverage --serial=test",
"lint:fix": "eslint --fix .",
"lint": "eslint ."
},
"files": [
"CHANGELOG.md",
"package.json",
"lib",
"bin"
],
"repository": {
"type": "git",
"url": "[email protected]:eik-lib/service.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/eik-lib/service/issues"
},
"homepage": "https://github.com/eik-lib/service#readme",
"dependencies": {
"@eik/core": "1.3.45",
"convict": "6.2.4",
"fastify": "4.27.0",
"@fastify/compress": "6.5.0",
"@fastify/cors": "8.5.0",
"@fastify/jwt": "7.2.4",
"http-errors": "2.0.0",
"js-yaml": "4.1.0",
"pino": "8.21.0"
},
"devDependencies": {
"@babel/eslint-parser": "7.24.6",
"@semantic-release/changelog": "6.0.3",
"@semantic-release/git": "10.0.1",
"eslint": "8.57.0",
"eslint-config-airbnb-base": "15.0.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-import": "2.29.1",
"eslint-plugin-prettier": "5.1.3",
"form-data": "4.0.0",
"node-fetch": "3.3.1",
"pino-pretty": "10.3.1",
"prettier": "3.2.5",
"semantic-release": "23.1.1",
"tap": "18.7.2",
"unique-slug": "4.0.0"
}
}