-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
118 lines (118 loc) · 2.56 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
{
"name": "dashboard-api",
"version": "1.0.0",
"description": "ledger management dashboard",
"main": "index.js",
"scripts": {
"test": "node test/app-test.js",
"start": "node index.js",
"dev": "nodemon index.js",
"debug": "nodemon --inspect index.js",
"doc": "node scripts/json-refs.js",
"lic": "license-check-and-add",
"lint": "eslint --ext .js ."
},
"author": "zhigui",
"license": "MIT",
"repository": {
"type": "git",
"url": "http://gitlab.ziggurat.cn/zhigui/dashboard-api.git"
},
"dependencies": {
"@koa/cors": "^2.2.2",
"archiver": "^3.0.0",
"axios": "^0.18.0",
"dotenv": "^6.2.0",
"es6-error": "^4.1.1",
"fabric-ca-client": "~1.2.2",
"fabric-client": "^1.3.0",
"flightplan": "^0.6.19",
"is-reachable": "^3.0.0",
"joi": "^14.1.0",
"js-yaml": "^3.12.0",
"json-refs": "^3.0.12",
"jsonwebtoken": "^8.3.0",
"koa": "^2.2.0",
"koa-bodyparser": "^4.2.1",
"koa-logger": "^3.2.0",
"koa-multer": "^1.0.2",
"koa-router": "^7.1.1",
"koa-static": "^3.0.0",
"koa-validate": "^1.0.7",
"log4js": "^3.0.5",
"mongoose": "^5.2.8",
"node-ssh": "^5.1.2",
"sha1": "^1.1.1",
"shell-escape": "^0.2.0",
"shelljs": "^0.8.2",
"swagger2-koa": "^1.0.2",
"uuid": "^3.3.2",
"wait-on": "^3.2.0"
},
"devDependencies": {
"eslint": "^5.7.0",
"license-check-and-add": "^2.3.6",
"mocha": "^5.2.0",
"nodemon": "^1.18.4",
"should": "^13.2.3",
"supertest": "^3.3.0"
},
"nodemonConfig": {
"watch": [
"docs",
"dist",
"src"
],
"ext": "js,json,yml"
},
"license-check-and-add-config": {
"folder": ".",
"license": "license.txt",
"exact_paths_method": "EXCLUDE",
"exact_paths": [
".git",
".idea",
"build",
"dist",
"node_modules",
"src/.jsbeautifyrc",
"LICENSE",
"license.txt",
"markdown-license.txt"
],
"file_type_method": "EXCLUDE",
"file_types": [
".yml",
".yaml",
".log",
".json",
".xmind",
".png",
".txt",
".nosql"
],
"insert_license": false,
"clear_license": false,
"default_format": {
"append": "\n",
"eachLine": {
"prepend": "# "
}
},
"license_formats": {
"js": {
"prepend": "/*",
"append": "*/\n"
},
"dockerignore|gitignore|env|sh": {
"append": "\n",
"eachLine": {
"prepend": "# "
}
},
"md": {
"file": "markdown-license.txt"
}
}
}
}