-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
83 lines (83 loc) · 2.47 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
{
"name": "@lightyears1998/a-cycle-server",
"version": "1.1.0",
"description": "Backend server of ACycle, the life-style assistant application.",
"main": "src/index.ts",
"author": "lightyears <[email protected]>",
"license": "MIT",
"engines": {
"node": ">=15"
},
"scripts": {
"start": "ts-node src/index.ts",
"dev": "cross-env NODE_ENV=development DEBUG=* ts-node-dev --respawn --transpile-only --expose-gc -- src/index.ts",
"build": "tsc -p tsconfig.json",
"lint": "eslint .",
"typeorm": "node --require ts-node/register ./node_modules/typeorm/cli.js"
},
"dependencies": {
"@koa/cors": "^3.4.1",
"@types/bcrypt": "^5.0.0",
"@types/debug": "^4.1.7",
"@types/fs-extra": "^9.0.13",
"@types/jsonwebtoken": "^8.5.9",
"@types/koa": "^2.13.5",
"@types/koa-bodyparser": "^4.3.7",
"@types/koa-compress": "^4.0.3",
"@types/koa-response-time": "^2.1.2",
"@types/koa-router": "^7.4.4",
"@types/koa-static": "^4.0.2",
"@types/koa__cors": "^3.3.0",
"@types/node": "^18.7.13",
"@types/path-to-regexp": "^1.7.0",
"@types/pg": "^8.6.5",
"@types/randomstring": "^1.1.8",
"@types/uuid": "^8.3.4",
"@types/ws": "^8.5.3",
"bcrypt": "^5.0.1",
"body-parser": "^1.20.0",
"class-transformer": "^0.5.1",
"class-validator": "^0.13.2",
"debug": "^4.3.4",
"dotenv": "^16.0.1",
"fs-extra": "^10.1.0",
"jsonwebtoken": "^8.5.1",
"koa": "^2.13.4",
"koa-bodyparser": "^4.3.0",
"koa-compress": "^5.1.0",
"koa-mount": "^4.0.0",
"koa-response-time": "^2.1.0",
"koa-router": "^12.0.0",
"koa-static": "^5.0.0",
"moment": "^2.29.4",
"path-to-regexp": "^6.2.1",
"pg": "^8.8.0",
"randomstring": "^1.2.2",
"redis": "^4.3.0",
"reflect-metadata": "^0.1.13",
"ts-node": "^10.9.1",
"type-fest": "^2.19.0",
"typedi": "^0.10.0",
"typeorm": "^0.3.7",
"typescript": "5.0.4",
"uuid": "^8.3.2",
"ws": "^8.8.1",
"xstate": "^4.37.2"
},
"devDependencies": {
"@lightyears1998/eslint-config-lightyears-style": "^1.5.0",
"@typescript-eslint/eslint-plugin": "^5.35.1",
"@typescript-eslint/parser": "^5.35.1",
"cross-env": "^7.0.3",
"eslint": "^8.22.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.2.1",
"prettier": "^2.7.1",
"source-map-support": "^0.5.21",
"ts-node-dev": "^2.0.0"
},
"optionalDependencies": {
"bufferutil": "^4.0.6",
"utf-8-validate": "^5.0.9"
}
}