-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
102 lines (102 loc) · 3.54 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
99
100
101
102
{
"name": "evaluaciones-de-personal",
"version": "1.0.0",
"license": "MIT",
"scripts": {
"nx": "nx",
"start": "concurrently \"npx nx serve backend\" \"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 --prod --base=remotes/origin/master",
"affected:e2e": "nx affected:e2e",
"affected:test": "nx affected:test --base=remotes/origin/master",
"affected:lint": "nx affected:lint --base=remotes/origin/master",
"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",
"jobs": "npx tsc apps/backend/jobs/*.ts --outDir dist/apps/backend"
},
"private": true,
"dependencies": {
"@andes/api-tool": "^2.1.0",
"@andes/core": "^1.6.0",
"@andes/georeference": "^1.0.0",
"@andes/log": "^2.0.0",
"@andes/mongoose-plugin-audit": "^1.1.0",
"@andes/plex": "6.1.2",
"@andes/shared": "^5.2.0",
"@angular/animations": "^8.2.0",
"@angular/cdk": "^8.2.3",
"@angular/common": "^8.2.0",
"@angular/compiler": "^8.2.0",
"@angular/core": "^8.2.0",
"@angular/forms": "^8.2.0",
"@angular/material": "^8.2.3",
"@angular/platform-browser": "^8.2.0",
"@angular/platform-browser-dynamic": "^8.2.0",
"@angular/router": "^8.2.0",
"@types/mssql": "^6.0.2",
"bcrypt": "^4.0.1",
"concurrently": "^5.1.0",
"core-js": "^2.5.4",
"crypto": "^1.0.1",
"debug": "^4.1.1",
"handlebars": "^4.1.0",
"jquery": "^3.4.1",
"mongoose": "^5.9.5",
"mssql": "^6.2.0",
"ng-recaptcha": "^7.0.1",
"ngx-observe": "^1.1.0",
"node-fetch": "^2.6.0",
"node-schedule": "^1.3.2",
"nodemailer": "^6.4.6",
"ol": "^5.3.3",
"rxjs": "~6.4.0",
"rxjs-compat": "^6.5.4",
"shiro-trie": "^0.4.9",
"zone.js": "^0.9.1"
},
"devDependencies": {
"@angular-devkit/build-angular": "^0.803.25",
"@angular/compiler-cli": "^8.2.0",
"@angular/language-service": "^8.2.0",
"@babel/compat-data": "~7.8.6",
"@nrwl/angular": "^8.12.10",
"@nrwl/cypress": "8.12.10",
"@nrwl/eslint-plugin-nx": "^9.1.4",
"@nrwl/jest": "9.1.2",
"@nrwl/node": "9.1.2",
"@nrwl/workspace": "9.1.2",
"@types/express": "^4.17.3",
"@types/jest": "24.9.1",
"@types/jquery": "^3.3.31",
"@types/mongoose": "^5.7.7",
"@types/node": "^8.9.5",
"@typescript-eslint/eslint-plugin": "^2.25.0",
"@typescript-eslint/parser": "^2.25.0",
"codelyzer": "~5.0.1",
"cypress": "^3.8.2",
"dotenv": "^6.2.0",
"eslint": "6.8.0",
"eslint-config-prettier": "^6.10.1",
"jest": "24.9.0",
"jest-preset-angular": "^8.1.2",
"mongodb-memory-server-global": "^6.4.1",
"prettier": "1.19.1",
"supertest": "^4.0.2",
"ts-jest": "24.0.0",
"ts-node": "~7.0.0",
"tslint": "~6.0.0",
"typescript": "~3.5.3"
}
}