-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
63 lines (63 loc) · 3.24 KB
/
package.json
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
{
"name": "ot-system",
"version": "0.0.1",
"description": "ot-system协同系统",
"main": "gitConfig.js",
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"scripts": {
"inquirer": "^7.3.3",
"git": "node ./bin/git.js",
"commit": "git-cz",
"commitlint": "npx --no-install commitlint --edit $1",
"lint-staged": "lint-staged",
"husky-install": "husky install",
"test": "echo \"Error: no test specified\" && exit 1",
"updateCode": "cross-env type=update_code node ./bin/publish -r dotenv/config ",
"updateBulidCode": "npm run updateCode & npm run bulidCode",
"bulidCode": "cross-env type=bulid_code node -r dotenv/config ./bin/publish",
"publish:redis": "cross-env type=publish_redis node -r dotenv/config ./bin/publish",
"publish:mysql": "cross-env type=publish_mysql node -r dotenv/config ./bin/publish",
"publish:redis:mysql": "npm run publish:redis & npm run publish:mysql",
"publish:all:prod": "cross-env type=publish_all ENV=production node ./bin/publish -r dotenv/config dotenv_config_path=.env.production",
"publish:server:prod": "cross-env type=publish_server ENV=production node ./bin/publish -r dotenv/config dotenv_config_path=.env.production",
"publish:client:prod": "cross-env type=publish_client ENV=production node ./bin/publish -r dotenv/config dotenv_config_path=.env.production",
"publish:admin:prod": "cross-env type=publish_admin ENV=production node ./bin/publish -r dotenv/config dotenv_config_path=.env.production",
"publish:entry:prod": "cross-env type=publish_entry ENV=production node ./bin/publish -r dotenv/config dotenv_config_path=.env.production",
"docker:compose:log:prod": "docker compose --env-file .env.production logs -f",
"publish:all:dev": "cross-env type=publish_all ENV=development node ./bin/publish -r dotenv/config dotenv_config_path=.env.development",
"publish:server:dev": "cross-env type=publish_server ENV=development node ./bin/publish -r dotenv/config dotenv_config_path=.env.development",
"publish:client:dev": "cross-env type=publish_client ENV=development node ./bin/publish -r dotenv/config dotenv_config_path=.env.development",
"publish:admin:dev": "cross-env type=publish_admin ENV=development node ./bin/publish -r dotenv/config dotenv_config_path=.env.development",
"publish:entry:dev": "cross-env type=publish_entry ENV=development node ./bin/publish -r dotenv/config dotenv_config_path=.env.development",
"docker:compose:log:dev": " docker compose --env-file .env.development logs -f"
},
"repository": {
"type": "git",
"url": "git+ https://github.com/qq281113270/ot-system.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/qq281113270/Blogs/issues"
},
"homepage": "https://github.com/qq281113270/Blogs#readme",
"dependencies": {
"@babel/register": "^7.21.0",
"@commitlint/cli": "^17.0.2",
"@commitlint/config-conventional": "^17.0.2",
"chalk": "4.1.2",
"commitizen": "^4.2.4",
"cross-env": "^7.0.3",
"detect-port": "^1.5.1",
"dotenv": "^16.0.3",
"husky": "^8.0.1",
"kill-port": "^2.0.1",
"lint-staged": "^13.0.0",
"ora": "4.1.1",
"rimraf": "^5.0.0"
}
}