-
Notifications
You must be signed in to change notification settings - Fork 65
/
package.json
111 lines (111 loc) · 3.26 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
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
{
"name": "hitokoto",
"version": "1.7.1",
"description": "Fast & Powerful Hitokoto API Framework.",
"main": "core.js",
"engines": {
"node": ">= 18"
},
"scripts": {
"start": "node core",
"dev": "yarn nodemon core.js -D",
"pnpify": "yarn dlx @yarnpkg/pnpify",
"build:": "esbuild --bundle --minify --platform=node --outfile=dist/server.js core.js",
"lint": "eslint ./src/**/*.js ./adapter/**/*.js ./test/**/*.js core.js",
"watch": "yarn dlx supervisor --watch \".\" --extensions \"js,json\" --exec \"yarn\" -- \"start\"",
"test": "jest --verbose",
"commit": "yarn dlx git-cz",
"release": "yarn dlx release-it",
"changelog": "yarn dlx -p conventional-changelog-cli conventional-changelog -p conventionalcommits -i CHANGELOG.md -s -r 0 -n .changelog.config.js",
"prepare": "husky install",
"postinstall": "husky install"
},
"repository": "https://github.com/hitokoto-osc/hitokoto-api",
"author": "a632079 <a632079@qq.com>",
"license": "MIT",
"private": true,
"config": {
"commitizen": {
"path": "node_modules/cz-conventional-changelog"
}
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"prettier --write",
"eslint --fix"
]
},
"devDependencies": {
"@babel/core": "7.22.8",
"@babel/eslint-parser": "7.23.3",
"@babel/preset-env": "7.22.7",
"@commitlint/cli": "17.8.1",
"@commitlint/config-conventional": "17.8.1",
"@types/jest": "29.5.2",
"commitizen": "4.3.0",
"conventional-changelog-conventionalcommits": "7.0.2",
"cz-conventional-changelog": "3.3.0",
"esbuild": "^0.19.5",
"eslint": "8.53.0",
"eslint-config-prettier": "9.0.0",
"eslint-config-standard": "17.1.0",
"eslint-plugin-html": "7.1.0",
"eslint-plugin-import": "2.29.0",
"eslint-plugin-jest": "27.2.2",
"eslint-plugin-n": "16.3.1",
"eslint-plugin-prettier": "5.0.1",
"eslint-plugin-promise": "6.1.1",
"husky": "8.0.3",
"jest": "29.6.1",
"jest-extended": "4.0.0",
"lint-staged": "14.0.1",
"nodemon": "3.0.1",
"nyc": "15.1.0",
"prettier": "3.1.0",
"regenerator-runtime": "0.13.11",
"release-it": "16.1.0",
"supertest": "6.3.3",
"supervisor": "0.12.0",
"webpack": "^5.89.0"
},
"dependencies": {
"@hitokoto/koa-jsonp": "3.0.7",
"@hitokoto/koa-respond": "3.0.3",
"@koa/bodyparser": "^5.0.0",
"@koa/cors": "^4.0.0",
"@sentry/integrations": "7.57.0",
"@sentry/node": "7.57.0",
"@sentry/tracing": "7.57.0",
"NeteaseCloudMusicApi": "4.13.6",
"async": "3.2.4",
"bytes": "3.1.2",
"chalk": "4.1.2",
"commander": "11.0.0",
"cron": "2.3.1",
"fast-json-stringify": "5.8.0",
"flatstr": "1.0.12",
"got": "11.8.6",
"humanize-number": "0.0.2",
"ioredis": "5.3.2",
"joi": "17.9.2",
"js-yaml": "4.1.0",
"koa": "2.14.2",
"koa-compress": "5.1.1",
"koa-favicon": "2.1.0",
"koa-helmet": "7.0.2",
"koa-query-pretty": "0.3.0",
"koa-router": "12.0.0",
"lodash": "4.17.21",
"mysql2": "3.5.0",
"nconf": "0.12.1",
"nconf-yaml": "1.0.2",
"nodemailer": "6.9.3",
"passthrough-counter": "1.0.0",
"pify": "5.0.0",
"semver": "7.5.4",
"sequelize": "6.32.1",
"uuid": "9.0.0",
"winston": "3.9.0"
},
"packageManager": "yarn@4.0.2"
}