forked from deepkit/deepkit-framework
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
82 lines (82 loc) · 2.68 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
{
"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=2048 node_modules/jest/bin/jest.js --coverage --forceExit --no-cache",
"bootstrap": "lerna bootstrap --no-ci",
"bootstrap:ci": "lerna bootstrap",
"link": "npm-local-development --no-watcher",
"build": "tsc --build tsconfig.json && tsc --build tsconfig.esm.json && lerna run build",
"build:esm": "tsc --build tsconfig.esm.json",
"tsc": "tsc --build",
"install-compiler": "tsc --build packages/type-compiler/tsconfig.json && node packages/type-compiler/dist/cjs/install-transformer.js",
"tsc-watch": "tsc --build --watch",
"tsc-watch:esm": "tsc --build --watch tsconfig.esm.json",
"clean": "find packages/*/dist/* ! -name 'package.json' -type f -exec rm -f {} +",
"clean:modules": "rm -rf packages/*/node_modules; rm -rf node_modules",
"clean:lock": "rm -rf packages/*/package-lock.json",
"docs": "rm -rf docs && typedoc",
"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"
},
"peerDependencies": {},
"devDependencies": {
"@deepkit/core": "^1.0.1-alpha.13",
"@types/node": "14.14.28",
"codecov": "^3.8.3",
"coveralls": "^3.0.3",
"cloc": "^2.7.0",
"jest": "^27.5.1",
"@jest/globals": "^27.5.1",
"lerna": "^4.0.0",
"madge": "^4.0.0",
"npm-local-development": "^0.4.0",
"ts-jest": "^27.1.3",
"ts-node": "^10.0.0",
"ts-node-dev": "^1.1.1",
"typedoc": "^0.21.0",
"typescript": "^4.6.2"
},
"engines": {
"node": ">= 14.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/app",
"packages/event",
"packages/workflow",
"packages/stopwatch",
"packages/orm",
"packages/bson",
"packages/http",
"packages/template",
"packages/injector",
"packages/mongo",
"packages/sql",
"packages/mysql",
"packages/postgres",
"packages/sqlite",
"packages/framework-integration",
"packages/framework",
"packages/rpc",
"packages/broker",
"packages/topsort"
]
}
}