electron-distribution/package.json

65 lines
1.4 KiB
JSON
Raw Permalink Normal View History

2019-06-07 23:04:57 +08:00
{
"name": "electron-distribution",
2020-02-01 15:24:45 +08:00
"version": "1.0.4",
2019-06-07 23:04:57 +08:00
"description": "Electron Distribution",
"author": "yi-ge <a@wyr.me>",
"scripts": {
2020-02-01 15:22:59 +08:00
"dev": "nodemon src/dev.js",
2019-06-07 23:04:57 +08:00
"build": "babel src -d dist",
"start": "node dist/app.js"
},
"license": "MIT",
"dependencies": {
2020-01-15 17:58:01 +08:00
"ali-oss": "^6.4.0",
"axios": "^0.19.1",
"chalk": "^3.0.0",
"chance": "^1.1.4",
"cos-nodejs-sdk-v5": "^2.5.14",
"dockerode": "^3.0.2",
2019-06-07 23:04:57 +08:00
"hapi": "^18.1.0",
2020-01-15 17:58:01 +08:00
"hapi-swagger": "^12.0.0",
"inert": "^5.1.3",
"joi": "^14.3.1",
2019-06-07 23:04:57 +08:00
"jssha": "^2.3.1",
2020-01-15 17:58:01 +08:00
"lodash": "^4.17.15",
2019-06-07 23:04:57 +08:00
"lowdb": "^1.0.0",
2020-01-15 17:58:01 +08:00
"moment-timezone": "^0.5.27",
"qiniu": "^7.3.0",
"simple-git": "^1.129.0",
"socket.io": "^2.3.0",
"ssh2": "^0.8.7",
2019-06-07 23:04:57 +08:00
"vision": "^5.4.4"
},
"devDependencies": {
2020-01-15 17:58:01 +08:00
"@babel/cli": "^7.8.3",
"@babel/core": "^7.8.3",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/plugin-proposal-decorators": "^7.8.3",
"@babel/plugin-proposal-optional-chaining": "^7.8.3",
"@babel/preset-env": "^7.8.3",
"@babel/register": "^7.8.3",
"nodemon": "^2.0.2"
2019-06-07 23:04:57 +08:00
},
"nodemonConfig": {
"ignore": [
".git",
"node_modules/**/node_modules"
],
"delay": "2500",
"env": {
"NODE_ENV": "development"
},
"verbose": true,
"execMap": {
"js": "node --harmony"
},
"watch": [
"src/"
],
"ext": "js,json"
},
"engines": {
"node": ">= 10"
}
2020-02-01 15:22:59 +08:00
}