-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
65 lines (65 loc) · 1.6 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
{
"name": "bugu-web",
"version": "1.2.0",
"description": "BuguLink backend server",
"main": "app/index.js",
"scripts": {
"start": "npm run build && node app/index.js",
"build": "rimraf app && BABEL_ENV=production babel --out-dir=app src",
"lint": "eslint --ext .js src"
},
"pre-commit": [
"lint"
],
"repository": {
"type": "git",
"url": "git+https://github.com/bugulink/bugu-web.git"
},
"keywords": [
"BuguLink",
"backend",
"server",
"koajs",
"mysql",
"redis"
],
"author": "bugu.link",
"license": "MIT",
"bugs": {
"url": "https://github.com/bugulink/bugu-web/issues"
},
"homepage": "https://github.com/bugulink/bugu-web#readme",
"dependencies": {
"axios": "^0.21.0",
"koa": "^2.13.0",
"koa-bodyparser": "^4.3.0",
"koa-csrf": "^3.0.8",
"koa-logger": "^3.2.1",
"koa-orm": "^3.1.0",
"koa-redis": "^4.0.1",
"koa-router": "^10.0.0",
"koa-session": "^6.0.0",
"koa-view": "^2.1.3",
"lodash.template": "^4.5.0",
"mysql2": "^2.1.0",
"nanoid": "^3.1.10",
"nodemailer": "^6.4.10",
"notp": "^2.0.3",
"qiniu": "^7.3.2",
"uri-utils": "^1.0.4"
},
"devDependencies": {
"@babel/cli": "^7.10.4",
"@babel/core": "^7.10.4",
"@babel/plugin-proposal-object-rest-spread": "^7.10.4",
"@babel/preset-env": "^7.10.4",
"babel-eslint": "^10.1.0",
"eslint": "^7.4.0",
"eslint-config-standard": "^16.0.2",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"pre-commit": "^1.2.2",
"rimraf": "^3.0.2"
}
}