-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpackage.json
85 lines (85 loc) · 2.51 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "@godspeedsystems/core",
"version": "2.5.2",
"description": "> 4th Generation Declarative Microservice Framework",
"main": "dist/godspeed.js",
"publishConfig": {
"access": "public"
},
"scripts": {
"start": "cd dist && node -r ./telemetry/tracing.js app.js;",
"clean": "rm -rf dist",
"dev": "tsc --watch",
"build": "NODE_ENV=production swc src -d dist && rsync -a --exclude '*.ts' ./src/ ./dist/ && tsc --emitDeclarationOnly",
"prepublishOnly": "npm run clean && npm run build"
},
"author": "Godspeed Systems",
"license": "Godspeed V1",
"dependencies": {
"@godspeedsystems/metrics": "^0.0.3",
"@opentelemetry/api": "^1.6.0",
"ajv": "^8.11.0",
"ajv-errors": "^3.0.0",
"ajv-formats": "^2.1.1",
"body-parser": "^1.20.0",
"coffeescript": "^2.7.0",
"config": "^3.3.7",
"dotenv": "^16.3.1",
"glob": "^8.1.0",
"js-yaml": "^4.1.0",
"lodash": "^4.17.21",
"parse-duration": "^1.0.2",
"pino": "^8.14.1",
"pino-debug": "^2.0.0",
"pino-http": "^8.3.3",
"sonic-boom": "^3.2.0",
"swagger-ui-express": "^4.6.3",
"yaml": "^2.0.0",
"nodemon": "^3.1.0"
},
"devDependencies": {
"@swc/cli": "^0.1.62",
"@swc/core": "^1.3.96",
"@types/chai": "^4.3.1",
"@types/coffeescript": "^2.5.1",
"@types/config": "^0.0.41",
"@types/express-prometheus-middleware": "^1.2.1",
"@types/fs-extra": "^9.0.13",
"@types/glob": "^7.2.0",
"@types/js-yaml": "^4.0.5",
"@types/lodash": "^4.14.182",
"@types/node": "^17.0.45",
"@types/node-cleanup": "^2.1.2",
"@types/node-cron": "^3.0.7",
"@types/passport": "^1.0.8",
"@types/passport-jwt": "^3.0.6",
"@types/swagger-ui-express": "^4.1.4",
"@typescript-eslint/eslint-plugin": "^5.23.0",
"@typescript-eslint/parser": "^5.23.0",
"chai": "^4.3.6",
"copyfiles": "^2.4.1",
"eslint": "^8.15.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^8.5.0",
"eslint-formatter-table": "^7.32.1",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.30.0",
"pino-pretty": "^7.6.1",
"prettier": "2.6.2",
"typescript": "^4.7.0"
},
"types": "./dist/godspeed.d.ts",
"repository": {
"type": "git",
"url": "[email protected]:godspeedsystems/gs-node-service.git"
},
"keywords": [
"express",
"node",
"schema-driven"
],
"packageManager": "[email protected]"
}