Files
certd/package.json

30 lines
943 B
JSON
Raw Normal View History

2020-12-13 23:06:17 +08:00
{
"name": "root",
2023-05-25 10:51:13 +08:00
"version": "1.0.3",
2020-12-13 23:06:17 +08:00
"private": true,
2020-12-26 01:37:53 +08:00
"type": "module",
2020-12-13 23:06:17 +08:00
"devDependencies": {
2023-05-24 17:38:24 +08:00
"@lerna-lite/cli": "^2.4.0",
2023-06-28 14:34:22 +08:00
"@lerna-lite/publish": "^2.4.0",
"@lerna-lite/run": "^2.4.0"
2020-12-13 23:06:17 +08:00
},
2021-02-05 17:07:49 +08:00
"scripts": {
"start": "lerna bootstrap --hoist",
2023-05-24 17:49:39 +08:00
"i-all": "lerna link && lerna exec npm install ",
2023-10-27 12:37:42 +08:00
"publish": "npm run proxy && npm run prepublishOnly1 && lerna publish 1.2.0 --conventional-commits && npm run afterpublishOnly && npm run deploy1",
2023-05-24 18:05:18 +08:00
"afterpublishOnly": "",
2023-05-24 17:53:28 +08:00
"proxy": "npm config set proxy=http://127.0.0.1:10809",
2023-05-24 18:05:18 +08:00
"prepublishOnly1": "npm run before-build && lerna run build ",
2023-07-03 09:33:18 +08:00
"before-build": "cd ./packages/core/acme-client && time /t >build.md && git add ./build.md && git commit -m \"build: prepare to build\"",
"deploy1": "node deploy.js"
2021-02-05 17:07:49 +08:00
},
2020-12-26 01:37:53 +08:00
"license": "MIT",
"dependencies": {
2023-06-28 14:34:22 +08:00
"axios": "^1.4.0",
2023-05-09 09:49:42 +08:00
"lodash": "^4.17.21"
2022-12-29 23:52:51 +08:00
},
"workspaces": [
"packages/**"
]
2020-12-13 23:06:17 +08:00
}