-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.22 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.22 KB
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
{
"name": "arc-node-server",
"version": "1.0.0",
"description": "基于koa的node服务端",
"main": "index.js",
"scripts": {
"test": "jest",
"dev": "cross-env NODE_ENV=development nodemon ./bin/start.js --inspect-brk",
"build": "pm2 start build.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/HRDVV/arc-node-server.git"
},
"keywords": [],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/HRDVV/arc-node-server/issues"
},
"homepage": "https://github.com/HRDVV/arc-node-server#readme",
"devDependencies": {
"cross-env": "^6.0.3",
"eslint": "^6.8.0",
"eslint-plugin-jest": "^23.6.0",
"eslint-plugin-node": "^11.0.0",
"jest": "^24.9.0",
"nodemon": "^2.0.2"
},
"dependencies": {
"axios": "^0.19.2",
"basic-auth": "^2.0.1",
"bcrypt": "^3.0.7",
"jsonwebtoken": "^8.5.1",
"koa": "^2.11.0",
"koa-bodyparser": "^4.2.1",
"koa-router": "^7.4.0",
"lodash": "^4.17.15",
"log4js": "^6.1.0",
"module-alias": "^2.2.2",
"mysql2": "^2.1.0",
"require-directory": "^2.1.1",
"sequelize": "^5.21.3",
"validator": "^12.1.0"
},
"_moduleAliases": {
"@app": "app",
"@core": "core"
}
}