-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
create.config.json
73 lines (73 loc) · 1.8 KB
/
create.config.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
64
65
66
67
68
69
70
71
72
73
{
"preferredPackageSystem": "npm",
"gitOrganization": "heusalagroup",
"organizationName": "Heusala Group",
"organizationEmail": "info@heusalagroup.fi",
"sourceDir": "./src",
"buildDir": "./dist",
"mainSourceFileTemplate": "./src/project-name.ts",
"files": [
"./LICENSE",
"./README.md",
"./gitignore",
"./Dockerfile",
"./Dockerfile.prod",
"./docker-compose.yml",
"./docker-compose.prod.yml",
"./babel.config.json",
"./rollup.config.js",
"./tsconfig.json",
"./src/main.ts",
"./src/constants/build.ts",
"./src/constants/runtime.ts",
"./src/controllers/BackendController.ts",
"./scripts/add-hg-module.sh",
"./scripts/get-all-branches.sh",
"./scripts/set-branch-main.sh",
"./scripts/pull-all.sh",
"./scripts/push-all.sh"
],
"renameFiles": {
"./gitignore": "./.gitignore"
},
"gitSubmodules": [
{
"url": "https://github.com/heusalagroup/fi.hg.core.git",
"path": "src/fi/hg/core",
"branch": "main"
},
{
"url": "https://github.com/heusalagroup/fi.hg.node.git",
"path": "src/fi/hg/node",
"branch": "main"
},
{
"url": "https://github.com/heusalagroup/fi.hg.backend.git",
"path": "src/fi/hg/backend",
"branch": "main"
}
],
"packages": [
"@types/node",
"@types/lodash",
"@babel/cli",
"@babel/core",
"@babel/preset-env",
"@babel/preset-typescript",
"@rollup/plugin-babel",
"@rollup/plugin-commonjs",
"@rollup/plugin-inject",
"@rollup/plugin-json",
"@rollup/plugin-node-resolve",
"@rollup/plugin-replace",
"@rollup/plugin-typescript",
"typescript",
"tslib",
"ts-node",
"heusalagroup/rollup-plugin-uglify",
"rollup",
"lodash"
],
"gitCommitMessage": "first commit",
"gitBranch": "main"
}