-
Notifications
You must be signed in to change notification settings - Fork 123
/
package.json
98 lines (98 loc) · 3.26 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "root",
"repository": "https://github.com/deepkit/deepkit-framework",
"author": "Marc J. Schmidt <[email protected]>",
"license": "MIT",
"private": true,
"scripts": {
"test": "node --max_old_space_size=3048 node_modules/jest/bin/jest.js --forceExit --no-cache",
"test:coverage": "node --max_old_space_size=3048 node_modules/jest/bin/jest.js --coverage --forceExit --no-cache",
"build": "tsc --build tsconfig.json && tsc --build tsconfig.esm.json && lerna run build",
"build:esm": "tsc --build tsconfig.esm.json",
"tsc": "tsc --build",
"postinstall": "lefthook install && sh install-compiler.sh",
"tsc-watch": "tsc --build --watch",
"tsc-watch:esm": "tsc --build --watch tsconfig.esm.json",
"clean:all": "npm run clean && npm run clean:modules && npm run clean:lock",
"clean": "find packages/*/dist/* ! -name 'package.json' -type f -exec rm -f {} +; rm -rf packages/*/.angular; rm -rf website/.angular; npm run postinstall",
"clean:modules": "rm -rf packages/*/node_modules; rm -rf node_modules",
"clean:lock": "rm -rf packages/*/package-lock.json; rm -rf package-lock.json",
"docs": "rm -rf docs && node --max-old-space-size=12096 node_modules/.bin/typedoc packages/*/index.ts",
"publish": "lerna publish --no-private prerelease",
"publish-force": "npm run build && lerna publish --no-private --force-publish",
"publish-website": "heroku container:push web && heroku container:release web"
},
"workspaces": [
"website",
"packages/*",
"!packages/fs",
"!packages/orm-browser-example",
"!packages/framework-examples"
],
"devDependencies": {
"@commitlint/config-conventional": "^18.4.3",
"@commitlint/config-lerna-scopes": "^18.4.4",
"@deepkit/core": "^1.0.1-alpha.143",
"@jest/globals": "^29.2.1",
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"@types/node": "20.6.0",
"cloc": "^2.7.0",
"codecov": "^3.8.3",
"commitlint": "^18.4.3",
"coveralls": "^3.0.3",
"jest": "^29.2.1",
"lefthook": "^1.5.5",
"lerna": "^7.4.2",
"madge": "^4.0.0",
"prettier": "^3.1.1",
"ts-jest": "^29.0.3",
"ts-node": "^10.9.1",
"ts-node-dev": "^2.0.0",
"typedoc": "^0.23.17",
"typescript": "~5.4.5"
},
"engines": {
"node": ">= 20.0.0"
},
"jest": {
"resolver": "./jest-resolver.js",
"testPathIgnorePatterns": [
"packages/*/dist"
],
"collectCoverageFrom": [
"src/**/*.ts"
],
"projects": [
"packages/core",
"packages/core-rxjs",
"packages/ui-library",
"packages/type",
"packages/type-compiler",
"packages/app",
"packages/event",
"packages/workflow",
"packages/stopwatch",
"packages/orm",
"packages/bson",
"packages/http",
"packages/template",
"packages/injector",
"packages/mongo",
"packages/filesystem",
"packages/filesystem-aws-s3",
"packages/filesystem-ftp",
"packages/filesystem-sftp",
"packages/filesystem-google",
"packages/sql",
"packages/mysql",
"packages/postgres",
"packages/sqlite",
"packages/framework-integration",
"packages/framework",
"packages/rpc",
"packages/broker",
"packages/topsort"
]
},
"packageManager": "[email protected]"
}