2019-07-03 07:50:59 +00:00
|
|
|
{
|
|
|
|
"name": "@dayu/core",
|
|
|
|
"version": "0.0.1",
|
|
|
|
"description": "> TODO: description",
|
|
|
|
"author": "MiaoWoo <admin@yumc.pw>",
|
|
|
|
"homepage": "https://github.com/circlecloud/dayu",
|
|
|
|
"license": "ISC",
|
|
|
|
"main": "dist/index.js",
|
|
|
|
"publishConfig": {
|
|
|
|
"registry": "https://repo.yumc.pw/repository/npm-hosted/"
|
|
|
|
},
|
|
|
|
"scripts": {
|
|
|
|
"dev": "npx ts-node-dev --respawn --prefer-ts --debounce=1500 --ignore-watch=[] --project tsconfig.json",
|
2019-07-05 08:04:05 +00:00
|
|
|
"debug": "npx nodemon dist/index.js",
|
2019-07-03 07:50:59 +00:00
|
|
|
"clean": "rimraf dist",
|
|
|
|
"watch": "npx tsc --watch",
|
|
|
|
"build": "yarn clean && npx tsc",
|
|
|
|
"test": "echo \"Error: run tests from root\" && exit 1"
|
|
|
|
},
|
|
|
|
"dependencies": {
|
|
|
|
"@cc-server/core": "^0.6.1",
|
|
|
|
"@cc-server/ws": "^0.6.1",
|
|
|
|
"@dayu/docker-api": "^0.0.1",
|
|
|
|
"axios": "^0.19.0"
|
|
|
|
},
|
|
|
|
"devDependencies": {
|
|
|
|
"@types/express": "^4.17.0",
|
|
|
|
"@types/socket.io": "^2.1.2",
|
2019-08-27 07:03:30 +00:00
|
|
|
"nodemon": "^1.19.1",
|
2019-07-03 07:50:59 +00:00
|
|
|
"rimraf": "^2.6.3",
|
|
|
|
"ts-node-dev": "^1.0.0-pre.40",
|
|
|
|
"typescript": "^3.5.2"
|
2019-07-05 08:04:05 +00:00
|
|
|
},
|
|
|
|
"nodemonConfig": {
|
|
|
|
"verbose": true,
|
|
|
|
"ignore": [
|
|
|
|
".git",
|
|
|
|
"public"
|
|
|
|
],
|
|
|
|
"watch": [
|
|
|
|
"./",
|
|
|
|
"../../node_modules"
|
|
|
|
],
|
|
|
|
"delay": "1500",
|
|
|
|
"ext": "js,json"
|
2019-07-03 07:50:59 +00:00
|
|
|
}
|
2019-08-27 07:03:30 +00:00
|
|
|
}
|