-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
99 lines (99 loc) · 2.35 KB
/
package.json
File metadata and controls
99 lines (99 loc) · 2.35 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"name": "@xarc/fastify-server",
"version": "5.0.0",
"description": "A configurable Fastify web server",
"main": "lib/index.js",
"types": "./lib/index.d",
"scripts": {
"build": "rm -rf lib && tsc",
"prepublishOnly": "rm -rf lib && tsc && xrun check",
"test": "jest",
"lint": "eslint",
"format": "prettier . --write",
"format:check": "prettier . --check",
"check": "run-p lint format:check",
"sample": "node test/sample/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/electrode-io/fastify-server.git"
},
"prettier": {
"printWidth": 100,
"arrowParens": "avoid",
"trailingComma": "none"
},
"keywords": [
"electrode",
"fastify",
"node",
"webserver"
],
"contributors": [
{
"name": "Joel Chen",
"email": "xchen@walmartlabs.com"
},
{
"name": "Kyle Jeske",
"email": "kyle.jeske@walmart.com"
},
{
"name": "Srinath Muthyala",
"email": "srinath.reddy.muthyala@walmart.com"
}
],
"license": "Apache-2.0",
"engines": {
"node": ">= 22.0.0"
},
"files": [
"lib",
"src"
],
"dependencies": {
"@fastify/static": "^8.2.0",
"async-eventemitter": "^0.2.4",
"chalk": "^4.1.0",
"electrode-confippet": "^1.7.0",
"fastify": "^5.6.1",
"fastify-plugin": "^5.0.1",
"lodash": "^4.17.21",
"require-at": "^1.0.6",
"tslib": "^2.1.0",
"xaa": "^1.7.0"
},
"devDependencies": {
"@babel/eslint-parser": "^7.22.15",
"@istanbuljs/nyc-config-typescript": "^1.0.1",
"@types/jest": "^29.5.11",
"@types/mocha": "^8.2.0",
"@types/node": "^22.0.0",
"@typescript-eslint/eslint-plugin": "^5.0.0",
"@typescript-eslint/parser": "^5.0.0",
"@xarc/run": "^1.1.1",
"eslint": "^7.16.0",
"eslint-config-walmart": "^2.2.1",
"eslint-plugin-filenames": "^1.1.0",
"intercept-stdout": "^0.1.2",
"jest": "^29.7.0",
"mitm": "^1.2.0",
"npm-run-all": "4.1.5",
"prettier": "^3.6.0",
"run-verify": "^1.2.1",
"source-map-support": "^0.5.19",
"superagent": "^9.0.2",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typescript": "^5.3.3",
"xstdout": "^0.1.1"
},
"mocha": {
"require": [
"ts-node/register",
"source-map-support/register",
"@xarc/module-dev/config/test/setup.js"
],
"recursive": true
}
}