-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
111 lines (111 loc) · 3.21 KB
/
Copy pathpackage.json
File metadata and controls
111 lines (111 loc) · 3.21 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
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
{
"name": "data2chartserver",
"version": "1.0.0",
"description": "data2chart project server",
"nodeAgent": {
"main": "./build/index.js"
},
"scripts": {
"dev": "./node_modules/.bin/nodemon --exec ./node_modules/.bin/ts-node ./src/index.ts --watch ./src -e ts,tsx ",
"prd": "pm2 start npm -- run dev",
"test": "cross-env NODE_ENV=dev ./node_modules/.bin/nyc --reporter=html ./node_modules/.bin/mocha -r ts-node/register test/**/*.spec.ts",
"test:online": "cross-env NODE_ENV=online ./node_modules/.bin/mocha -r ts-node/register test/interface/*.spec.ts",
"build": "npm run eslint && tsc",
"eslint": "./node_modules/.bin/eslint src --ext .ts"
},
"repository": {
"type": "git",
"url": ""
},
"author": "alexzhli",
"license": "ISC",
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "^0.1.3",
"@types/adm-zip": "^0.4.34",
"@types/async-retry": "^1.4.2",
"@types/bluebird": "^3.5.29",
"@types/dateformat": "^3.0.1",
"@types/ip": "^1.1.0",
"@types/jsonwebtoken": "^8.5.1",
"@types/koa": "2.0.50",
"@types/koa__multer": "2.0.2",
"@types/koa-bodyparser": "4.3.0",
"@types/koa-compose": "3.2.0",
"@types/koa-logger": "^3.1.1",
"@types/koa-mount": "^4.0.0",
"@types/koa-router": "7.0.42",
"@types/koa-static": "4.0.1",
"@types/koa-static-server": "^1.3.0",
"@types/mathjs": "^6.0.5",
"@types/mocha": "^5.2.7",
"@types/mysql": "^2.15.18",
"@types/node": "^12.7.12",
"@types/node-cron": "^2.0.3",
"@types/node-xlsx": "^0.15.1",
"@types/request": "^2.48.3",
"@types/should": "^13.0.0",
"@types/uuid": "^3.4.5",
"@types/validator": "^12.0.1",
"@typescript-eslint/eslint-plugin": "4.1.0",
"@typescript-eslint/parser": "4.1.0",
"cross-env": "^6.0.3",
"ebook-convert": "^2.0.1",
"eslint": "7.8.1",
"eslint-config-alloy": "3.8.0",
"gitbook-cli": "^2.3.2",
"mocha": "^6.2.1",
"nodemon": "^1.19.3",
"nyc": "^14.1.1",
"request": "^2.88.0",
"should": "^13.2.3",
"source-map-support": "^0.5.13",
"ts-node": "^8.4.1",
"typescript": "^4.3.5"
},
"nyc": {
"extends": "@istanbuljs/nyc-config-typescript",
"extension": [
".ts"
],
"include": [
"src"
]
},
"dependencies": {
"@koa/multer": "^3.0.0",
"@types/ejs": "^3.1.0",
"@types/js-beautify": "^1.13.3",
"@types/koa2-cors": "^2.0.2",
"adm-zip": "^0.5.5",
"async-retry": "^1.3.1",
"axios": "^0.21.0",
"dateformat": "^3.0.3",
"ejs": "^3.1.6",
"ip": "^1.1.5",
"js-beautify": "^1.14.0",
"jsonwebtoken": "^8.5.1",
"koa": "^2.8.2",
"koa-bodyparser": "^4.2.1",
"koa-jwt": "^4.0.0",
"koa-logger": "^3.2.1",
"koa-mount": "^4.0.0",
"koa-router": "^7.4.0",
"koa-static": "^5.0.0",
"koa-static-server": "^1.5.2",
"koa2-cors": "^2.0.6",
"mariadb": "^2.5.3",
"mathjs": "^7.0.1",
"multer": "^1.4.2",
"mysql": "^2.17.1",
"mysql2": "^2.1.0",
"node-cron": "^3.0.0",
"node-lame": "^1.2.2",
"node-xlsx": "^0.16.1",
"reflect-metadata": "^0.1.13",
"sequelize": "^5.21.3",
"sequelize-typescript": "^1.1.0",
"svg-captcha": "^1.4.0",
"uuid": "^3.3.3",
"validator": "^12.2.0"
}
}