-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.73 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
{
"name": "@arinoto/root",
"private": true,
"version": "1.0.0",
"description": "Architecture as code with pluggable design",
"devDependencies": {
"@tsconfig/node18": "^1.0.1",
"@types/jest": "^28.1.6",
"@types/node": "^18.0.5",
"@typescript-eslint/eslint-plugin": "^5.35.1",
"@typescript-eslint/parser": "^5.35.1",
"eslint": "^8.23.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-standard-with-typescript": "^22.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-n": "^15.2.5",
"eslint-plugin-promise": "^6.0.1",
"husky": "^8.0.1",
"jest": "^28.1.3",
"lerna": "6.4.1",
"nx": "^14.5.4",
"ts-jest": "^28.0.7",
"ts-node": "^10.9.1",
"typescript": "^4.8.2",
"yarn": "1.22.19"
},
"scripts": {
"bootstrap": "$npm_config_local_prefix/ci/bootstrap.sh",
"tsc": "tsc --build --verbose && lerna run post-build",
"rebuild": "npm run clean && npm run tsc",
"vis:all": "lerna run vis && lerna run vis:arch",
"clean": "npx lerna list --json | jq -r '.[].location' | xargs -I{} rm -rf '{}/dist'",
"ci:test-all": "$npm_config_local_prefix/ci/test-all.sh",
"ci:publish-check": "$npm_config_local_prefix/ci/publish-check.sh",
"prepare": "husky install",
"docs": "$npm_config_local_prefix/ci/changelog.sh"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dooreelko/dorc.git"
},
"author": "dooreelko",
"license": "LGPL-3.0",
"bugs": {
"url": "https://github.com/dooreelko/dorc/issues"
},
"homepage": "https://github.com/dooreelko/dorc#readme"
}