-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.72 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.72 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
{
"name": "api-service",
"version": "1.0.0",
"description": "api-service",
"main": "index.js",
"author": "Jarvan",
"license": "UNLICENSED",
"scripts": {
"start": "nodemon main.ts",
"prod": "node ./build/main.js",
"build": "tsc"
},
"engines": {
"node": ">=16.x"
},
"dependencies": {
"axios": "^1.6.5",
"chatgpt": "^5.1.2",
"cookie-parser": "^1.4.6",
"dotenv": "^16.0.3",
"express": "^4.17.1",
"formidable": "^2.0.1",
"influx": "^5.0.7",
"ioredis": "^4.23.0",
"isomorphic-fetch": "^3.0.0",
"jest": "^26.6.3",
"joi": "^17.3.0",
"jsonwebtoken": "^9.0.0",
"lodash": "^4.17.11",
"log4js": "^6.3.0",
"moment": "^2.29.1",
"mysql2": "^3.9.4",
"node-schedule": "^1.3.3",
"nodemon": "^2.0.16",
"openai": "^3.3.0",
"ora": "^6.2.0",
"qiniu": "^7.7.0",
"reflect-metadata": "^0.1.13",
"sequelize": "^6.21.0",
"sequelize-typescript": "^2.1.3",
"tedious": "^14.6.0"
},
"devDependencies": {
"@types/cookie-parser": "^1.4.3",
"@types/express": "^4.17.1",
"@types/ioredis": "^4.22.0",
"@types/jest": "^26.0.20",
"@types/joi": "^14.3.4",
"@types/jsonwebtoken": "^8.5.8",
"@types/lodash": "^4.14.123",
"@types/node": "^12.16",
"@types/node-schedule": "^2.1.0",
"@typescript-eslint/eslint-plugin": "^4.6.0",
"@typescript-eslint/parser": "^4.6.0",
"eslint": "^7.6.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-config-prettier": "^4.0.0",
"eslint-plugin-import": "^2.15.0",
"eslint-plugin-prettier": "^3.0.1",
"eslint-plugin-typescript": "^0.14.0",
"jest-stare": "^2.2.1",
"lint-staged": "^13.2.2",
"ts-jest": "^26.5.0",
"typescript": "^4.9.5"
}
}