-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.44 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
{
"name": "island",
"version": "1.2.3",
"main": "dist/main.js",
"author": "lin",
"scripts": {
"start:dev": "nodemon --inspect-brk",
"start:prod": "node main.js",
"start": "node ./dist/main.js",
"prestart": "npx babel src -d dist",
"compile": "npx babel src -d dist",
"dev": "nodemon --watch src --exec \"npm run start\"",
"dockerStart": "node ./dist/main.js",
"predockerStart": "npx babel src -d dist"
},
"dependencies": {
"@babel/runtime": "^7.8.4",
"axios": "^0.21.1",
"basic-auth": "^2.0.1",
"bcryptjs": "^2.4.3",
"core-js": "3",
"dayjs": "^1.8.18",
"jsonwebtoken": "^8.4.0",
"koa": "^2.7.0",
"koa-bodyparser": "^4.2.1",
"koa-logger": "^3.2.0",
"koa-router": "^7.4.0",
"koa-static": "^5.0.0",
"lodash": "^4.17.19",
"mysql2": "^1.6.5",
"npm-check": "^5.9.0",
"require-directory": "^2.1.1",
"sequelize": "^5.6.1",
"validator": "^10.11.0"
},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.8.4",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/plugin-transform-runtime": "^7.8.3",
"@babel/preset-env": "^7.8.4",
"@types/koa": "^2.11.3",
"@types/sequelize": "^4.28.9",
"@types/validator": "^13.0.0",
"nodemon": "^1.19.1"
},
"directories": {
"test": "test"
},
"repository": {
"type": "git"
},
"keywords": [
"island",
"koa",
"server"
],
"license": "MIT"
}