-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
112 lines (112 loc) · 2.86 KB
/
package.json
File metadata and controls
112 lines (112 loc) · 2.86 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
{
"author": "Stefan Werfling",
"bin": {
"figtree": "./dist/Cli/index.js"
},
"description": "Figtree - Server Core",
"devDependencies": {
"@stylistic/eslint-plugin-ts": "^3.0.0",
"@types/async-exit-hook": "^2.0.2",
"@types/cookie-parser": "^1.4.7",
"@types/csurf": "^1.11.5",
"@types/express": "^5.0.1",
"@types/express-session": "^1.18.1",
"@types/node": "^22.15.18",
"@types/node-forge": "git+https://github.com/stefanwerfling/node-forge-types.git",
"@types/node-schedule": "^2.1.0",
"@types/swagger-ui-express": "^4.1.8",
"@types/uuid": "^10.0.0",
"@typescript-eslint/eslint-plugin": "^8.21.0",
"@typescript-eslint/parser": "^8.21.0",
"eslint": "^9.19.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-prefer-arrow": "^1.2.3",
"figtree-schemas": "git+https://github.com/stefanwerfling/figtree-schemas.git",
"typescript": "^5.7.3",
"vite": "^5.0.0",
"vtseditor": "git+https://github.com/stefanwerfling/vtseditor.git"
},
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"keywords": [
"backend",
"http-server",
"api",
"core",
"config",
"logging",
"db",
"raw-server"
],
"name": "figtree",
"peerDependencies": {
"@influxdata/influxdb-client": "^1.35.0",
"async-exit-hook": "^2.0.1",
"chromadb": "^3.0.3",
"cookie-parser": "^1.4.6",
"csurf": "^1.11.0",
"ets": "git+https://github.com/OpenSourcePKG/ets.git",
"express": "^5.1.0",
"express-rate-limit": "^7.5.0",
"express-session": "^1.18.1",
"helmet": "^8.1.0",
"mysql": "^2.18.1",
"node-forge": "^1.3.1",
"node-schedule": "^2.1.1",
"rbac-simple": "git+https://github.com/OpenSourcePKG/rbac-simple.git",
"redis": "^4.7.0",
"swagger-ui-express": "^5.0.1",
"typeorm": "0.3.20",
"uuid": "^11.1.0",
"vite": "^5.0.0",
"vts": "git+https://github.com/OpenSourcePKG/vts.git",
"winston": "^3.13.0",
"winston-daily-rotate-file": "^5.0.0",
"ws": "^8.18.1"
},
"peerDependenciesMeta": {
"@types/async-exit-hook": {
"optional": true
},
"@types/cookie-parser": {
"optional": true
},
"@types/express": {
"optional": true
},
"@types/express-session": {
"optional": true
},
"@types/node": {
"optional": true
},
"@types/node-forge": {
"optional": true
},
"@types/swagger-ui-express": {
"optional": true
},
"@types/uuid": {
"optional": true
},
"vite": {
"optional": true
}
},
"scripts": {
"build": "npm run clean && npm run compile",
"clean": "rm -rf dist",
"compile": "tsc --project tsconfig.json"
},
"type": "module",
"types": "dist/index.d.ts",
"version": "1.0.21",
"dependencies": {
"dotenv": "^17.4.1"
}
}