forked from phixcn/node
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.18 KB
/
Copy pathpackage.json
File metadata and controls
44 lines (44 loc) · 1.18 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
{
"name": "node",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"tsc": "tsc",
"sync": "cross-env NODE_ENV=development nodemon --watch ./src -e ts,tsx --exec node --inspect -r ts-node/register ./src/index.ts",
"build": "cross-env NODE_ENV=production webpack"
},
"author": "",
"license": "ISC",
"dependencies": {
"@types/koa": "^2.13.11",
"@types/koa-router": "^7.4.7",
"axios": "^1.6.2",
"better-sqlite3": "^9.1.1",
"bignumber.js": "^9.1.2",
"koa": "^2.14.2",
"koa-bodyparser": "^4.4.1",
"koa-log4": "^2.3.2",
"koa-router": "^12.0.1",
"koa2-cors": "^2.0.6",
"lodash": "^4.17.21",
"mysql": "^2.18.1",
"node-schedule": "^2.1.1",
"nodemon": "^3.0.1",
"schedule": "^0.5.0",
"ts-node": "^10.9.1",
"web3": "^1.9.0"
},
"devDependencies": {
"clean-webpack-plugin": "^4.0.0",
"copy-webpack-plugin": "^11.0.0",
"cross-env": "^7.0.3",
"externals-dependencies": "^1.0.4",
"javascript-obfuscator": "^4.1.0",
"terser-webpack-plugin": "^5.3.6",
"ts-loader": "^9.4.1",
"webpack": "^5.75.0",
"webpack-cli": "^4.10.0",
"webpack-obfuscator": "^3.5.1"
}
}