forked from GoldL/island
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 951 Bytes
/
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
{
"name": "island",
"version": "1.0.0",
"description": "a demo of node.js",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "[email protected]:iGolden/island.git"
},
"author": "",
"license": "ISC",
"dependencies": {
"axios": "^0.19.0",
"basic-auth": "^2.0.1",
"bcryptjs": "^2.4.3",
"jsonwebtoken": "^8.5.1",
"koa": "^2.7.0",
"koa-bodyparser": "^4.2.1",
"koa-router": "^7.4.0",
"koa-static": "^5.0.0",
"lodash": "^4.17.11",
"module-alias": "^2.2.0",
"mysql2": "^1.6.5",
"require-directory": "^2.1.1",
"sequelize": "^5.8.11",
"validator": "^11.0.0"
},
"_moduleAliases": {
"@root": ".",
"@model": "app/model",
"@core": "core",
"@middlewares": "middlewares",
"@validator": "app/validators/validator.js",
"@services": "app/services",
"@lib": "app/lib"
}
}