-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
116 lines (116 loc) · 2.89 KB
/
package.json
File metadata and controls
116 lines (116 loc) · 2.89 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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
{
"name": "@opsvent/dev-server",
"version": "0.1.3",
"private": true,
"description": "An example server implementation that can be used to communicate with the reporter",
"main": "dist/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "ts-node --project ./tsconfig.json src/index.ts",
"build": "rimraf dist && cross-env NODE_ENV=production tsc",
"typecheck": "tsc --noEmit",
"lint": "esw --color --ext .ts src",
"lint:fix": "esw --color --fix --ext .ts src",
"lint:watch": "esw --color --fix --watch --cache --ext .ts src",
"release": "standard-version",
"release:pre": "standard-version --prerelease"
},
"repository": {
"type": "git",
"url": "git+https://github.com/opsvent/dev-server.git"
},
"keywords": [
"opsvent"
],
"author": "Opsvent <contact@opsvent.com>",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/opsvent/dev-server/issues"
},
"homepage": "https://github.com/opsvent/dev-server#readme",
"devDependencies": {
"@types/ejs": "^3.1.2",
"@types/http-errors": "^2.0.1",
"@types/lodash": "^4.14.195",
"@types/node": "^20.1.2",
"@typescript-eslint/eslint-plugin": "^5.59.5",
"@typescript-eslint/parser": "^5.59.5",
"cross-env": "^7.0.3",
"eslint": "^8.40.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-prettier": "^4.2.1",
"eslint-watch": "^8.0.0",
"prettier": "^2.8.8",
"rimraf": "^5.0.0",
"standard-version": "^9.5.0",
"ts-node": "^10.9.1",
"typescript": "^5.0.4"
},
"dependencies": {
"@fastify/static": "^6.10.2",
"@fastify/view": "^7.4.1",
"@opsvent/hmac": "^1.0.1",
"@sinclair/typebox": "^0.28.9",
"date-fns": "^2.30.0",
"dotenv": "^16.0.3",
"ejs": "^3.1.9",
"env-var": "^7.3.1",
"fastify": "^4.17.0",
"fastify-raw-body": "^4.2.0",
"http-errors": "^2.0.0",
"lodash": "^4.17.21",
"reflect-metadata": "^0.1.13",
"sqlite3": "^5.1.6",
"typeorm": "^0.3.16",
"winston": "^3.8.2",
"yaml": "^2.2.2"
},
"standard-version": {
"scripts": {
"prerelease": "git fetch --all --tags"
},
"types": [
{
"type": "feat",
"section": "Features"
},
{
"type": "fix",
"section": "Bug Fixes"
},
{
"type": "imp",
"section": "Improvements"
},
{
"type": "ci",
"section": "Build/CI"
},
{
"type": "chore",
"hidden": true
},
{
"type": "docs",
"section": "Documentation"
},
{
"type": "refactor",
"section": "Refactor"
},
{
"type": "test",
"section": "Testing"
},
{
"type": "perf",
"section": "Performance"
},
{
"type": "intern",
"section": "Internal"
}
]
}
}