-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
80 lines (80 loc) · 2.31 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
{
"name": "tshio",
"version": "0.2.2",
"license": "MIT",
"scripts": {
"nx": "nx",
"start": "nx serve",
"build": "nx run-many --target=build --all",
"test": "nx run-many --target=test --all --parallel=1",
"lint": "nx workspace-lint && nx run-many --target=lint --all",
"e2e": "nx e2e",
"affected:apps": "nx affected:apps",
"affected:libs": "nx affected:libs",
"affected:build": "nx affected:build",
"affected:e2e": "nx affected:e2e",
"affected:test": "nx affected:test",
"affected:lint": "nx affected:lint",
"affected:dep-graph": "nx affected:dep-graph",
"affected": "nx affected",
"format": "nx format:write",
"format:write": "nx format:write",
"format:check": "nx format:check",
"update": "nx migrate latest",
"workspace-generator": "nx workspace-generator",
"dep-graph": "nx dep-graph",
"help": "nx help",
"cz": "cz",
"prepare": "husky install",
"typecheck": "tsc --noEmit -p tsconfig.base.json"
},
"dependencies": {
"chalk": "^4.1.2",
"commander": "^8.3.0",
"elastic-builder": "2.16.0",
"fs-extra": "^10.0.0",
"glob": "^7.2.0",
"tslib": "^2.0.0",
"uuid": "^8.3.2"
},
"private": true,
"devDependencies": {
"@commitlint/cli": "^14.1.0",
"@commitlint/config-angular": "^14.1.0",
"@commitlint/config-conventional": "^14.1.0",
"@elastic/elasticsearch": "^7.15.0",
"@jscutlery/semver": "^2.15.0",
"@nrwl/cli": "13.2.0",
"@nrwl/eslint-plugin-nx": "13.2.0",
"@nrwl/jest": "13.2.0",
"@nrwl/linter": "13.2.0",
"@nrwl/node": "13.2.0",
"@nrwl/nx-cloud": "12.5.4",
"@nrwl/tao": "13.2.0",
"@nrwl/workspace": "13.2.0",
"@types/glob": "^7.2.0",
"@types/jest": "27.0.2",
"@types/node": "14.14.33",
"@types/uuid": "^8.3.3",
"@typescript-eslint/eslint-plugin": "4.33.0",
"@typescript-eslint/parser": "4.33.0",
"commitizen": "^4.2.4",
"cz-conventional-changelog": "^3.3.0",
"dotenv": "10.0.0",
"eslint": "7.32.0",
"eslint-config-prettier": "8.1.0",
"husky": "^7.0.4",
"jest": "27.2.3",
"ngx-deploy-npm": "^3.0.7",
"prettier": "2.4.1",
"ts-jest": "27.0.5",
"ts-node": "~9.1.1",
"typescript": "4.3.5",
"zx": "^4.2.0"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
}
}