-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
74 lines (74 loc) · 2.35 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
{
"name": "@spytech/flight",
"version": "1.0.1",
"description": "A web server designed for running full stack, component based applications at enterprise scale.",
"main": "src/flight.ts",
"publishConfig": {
"access": "public"
},
"bin": {
"flight": "./dist/flight.js"
},
"scripts": {
"lint": "eslint . --fix && prettier -w .",
"build": "rm -rf dist; node_modules/.bin/tsc --project .",
"test": "echo \"Error: no test specified\" && exit 0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bartonmalow/flight.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/bartonmalow/flight/issues"
},
"homepage": "https://github.com/bartonmalow/flight#readme",
"dependencies": {
"@koa/cors": "^5.0.0",
"@koa/router": "^13.1.0",
"@vitejs/plugin-vue": "^5.2.1",
"@vue/language-plugin-pug": "^2.2.0",
"core-js": "^3.40.0",
"dotenv": "^16.4.7",
"esbuild": "^0.23.1",
"fast-glob": "^3.3.3",
"ioredis": "^5.4.2",
"koa": "^2.15.3",
"koa-bodyparser": "^4.4.1",
"koa-compress": "^5.1.1",
"koa-connect-history-api-fallback": "^0.3.1",
"koa-helmet": "^8.0.1",
"koa-logger": "^3.2.1",
"koa-ratelimit": "^5.1.0",
"koa-redis": "^4.0.1",
"koa-redis-cache": "^3.0.3",
"koa-send": "^5.0.1",
"koa-session": "^6.4.0",
"koa-static": "^5.0.0",
"unplugin-fonts": "^1.3.1",
"vite": "^5.4.11",
"vite-plugin-vuetify": "^2.0.4",
"yargs": "^17.7.2"
},
"devDependencies": {
"@types/koa": "^2.15.0",
"@types/koa__cors": "^5.0.0",
"@types/koa__router": "^12.0.4",
"@types/koa-bodyparser": "^4.3.12",
"@types/koa-compress": "^4.0.6",
"@types/koa-logger": "^3.1.5",
"@types/koa-ratelimit": "^5.0.5",
"@types/koa-redis": "^4.0.5",
"@types/koa-redis-cache": "^3.0.4",
"@types/koa-session": "^6.4.5",
"@types/koa-static": "^4.0.4",
"@types/node": "^20.11.0",
"eslint": "^9.20.0",
"eslint-plugin-jsdoc": "^50.6.3",
"eslint-plugin-vue": "^9.32.0",
"prettier": "^3.4.2",
"ts-node": "^10.9.2",
"typescript": "^5.7.2"
}
}