-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
85 lines (85 loc) · 2.77 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
{
"name": "awai",
"version": "0.0.7",
"license": "MIT",
"scripts": {
"nx": "nx",
"start": "nx serve",
"build": "nx build",
"test": "nx test",
"lint": "nx workspace-lint && nx lint",
"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-schematic": "nx workspace-schematic",
"dep-graph": "nx dep-graph",
"help": "nx help",
"test:all": "nx affected:test --all --codeCoverage --skip-nx-cache",
"docs": "npm run build:toolbox:doc && npm run build:mongodb:doc",
"build:toolbox:doc": "compodoc -p libs/toolbox/tsconfig.lib.json -n toolbox -d docs/toolbox --hideGenerator",
"build:mongodb:doc": "compodoc -p libs/mongodb/tsconfig.lib.json -n mongodb -d docs/mongodb --hideGenerator",
"changelog": "conventional-changelog -i CHANGELOG.md -s",
"combine_coverage": "lcov-result-merger 'coverage/**/lcov.info' 'coverage/lcov.info'"
},
"dependencies": {
"mongodb": "^3.5.9",
"tslib": "^1.10.0"
},
"devDependencies": {
"@angular-devkit/build-angular": "~0.901.9",
"@angular-devkit/build-ng-packagr": "~0.901.9",
"@angular/compiler-cli": "~9.1.11",
"@commitlint/cli": "^9.0.1",
"@commitlint/config-conventional": "^9.0.1",
"@compodoc/compodoc": "^1.1.11",
"@nrwl/angular": "^9.4.5",
"@nrwl/eslint-plugin-nx": "9.4.5",
"@nrwl/jest": "9.4.5",
"@nrwl/node": "^9.4.5",
"@nrwl/web": "^9.4.5",
"@nrwl/workspace": "9.4.5",
"@types/jest": "26.0.3",
"@types/mongodb": "^3.5.25",
"@types/node": "~14.0.14",
"@typescript-eslint/eslint-plugin": "3.4.0",
"@typescript-eslint/parser": "3.4.0",
"commitizen": "^4.1.2",
"coveralls": "^3.1.0",
"cz-conventional-changelog": "^3.2.0",
"dotenv": "8.2.0",
"eslint": "7.3.1",
"eslint-config-prettier": "6.11.0",
"husky": "^4.2.5",
"jest": "26.1.0",
"jest-preset-angular": "8.1.2",
"lcov-result-merger": "^3.1.0",
"mongodb-memory-server": "^6.6.1",
"ng-packagr": "^9.0.0",
"prettier": "2.0.5",
"ts-jest": "26.1.1",
"ts-node": "~8.10.2",
"tslint": "~6.1.2",
"typescript": "~3.9.5"
},
"husky": {
"hooks": {
"prepare-commit-msg": "exec < /dev/tty && git cz --hook || true",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}