-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 1.87 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
{
"name": "koa-chat",
"version": "1.0.2",
"description": "node koa chat socket.io",
"main": "app.js",
"scripts": {
"dev": "cross-env NODE_ENV=development nodemon node app.js",
"dev:debug": "cross-env NODE_ENV=development DEBUG=* nodemon node app.js",
"init": "node init/index.js",
"version": "conventional-changelog -p angular -i CHANGELOG.md -s && git add CHANGELOG.md",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "https://github.com/hello-astar/koa-chat.git"
},
"keywords": [
"node",
"koa",
"chat",
"socket.io",
"koa-chat"
],
"author": "astar",
"license": "ISC",
"bugs": {
"url": "https://github.com/hello-astar/koa-chat/issues"
},
"homepage": "https://github.com/hello-astar/koa-chat#readme",
"dependencies": {
"axios": "^0.21.1",
"jsonwebtoken": "^8.5.1",
"koa": "^2.7.0",
"koa-body": "^4.2.0",
"koa-compress": "^5.0.1",
"koa-conditional-get": "^3.0.0",
"koa-etag": "^4.0.0",
"koa-json-error": "^3.1.2",
"koa-jwt": "^4.0.0",
"koa-logger": "^3.2.1",
"koa-parameter": "^3.0.1",
"koa-router": "^9.4.0",
"koa-session": "^6.1.0",
"koa-static": "^5.0.0",
"module-alias": "^2.2.2",
"moment": "^2.29.1",
"mongoose": "^5.10.5",
"qiniu": "^7.3.2",
"sharp": "^0.28.1",
"socket.io": "^3.1.0",
"socketio-jwt": "^4.6.2",
"svg-captcha": "^1.4.0"
},
"_moduleAliases": {
"@root": ".",
"@config": "./config",
"@controllers": "./controllers",
"@middlewares": "./middlewares",
"@models": "./models",
"@routes": "./routes",
"@utils": "./utils"
},
"devDependencies": {
"cross-env": "^7.0.3",
"cz-conventional-changelog": "^3.3.0",
"nodemon": "^2.0.7"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}