This repository has been archived by the owner on Jun 6, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
111 lines (111 loc) · 3.83 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
103
104
105
106
107
108
109
110
111
{
"name": "digipop-monorepo",
"version": "0.0.2",
"license": "MIT",
"scripts": {
"nx": "nx",
"start": "nx serve",
"server": "npm run --prefix apps/server/ serve",
"build": "nx build",
"test": "nx test",
"lint": "nx workspace-lint && nx lint",
"e2e": "nx e2e",
"i:all": "rimraf node_modules/ && npm i && npm i --prefix apps/server/",
"s:all": "nx serve frontend & nx serve admin & npm run server",
"s:prod": "nodemon dist/api/server.js",
"b:admin:prod": "nx build admin --prod --base-href /content-management/",
"b:all": "nx build frontend --prod && npm run b:admin:prod && nx build server --prod",
"bs:prod": "rimraf -v dist/ && npm run b:all && npm run s:prod",
"l:all": "nx workspace-lint && nx lint frontend && nx lint admin && nx lint server",
"l:fix:all": "nx workspace-lint && nx lint frontend --fix && nx lint admin --fix && nx lint server --fix",
"t:all": "nx test frontend && nx test admin && nx test server",
"f:all": "nx format:write --all",
"f:staged": "npm run format:changed -- --staged --verbose",
"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",
"format:changed": "pretty-quick",
"update": "nx migrate latest",
"workspace-schematic": "nx workspace-schematic",
"dep-graph": "nx dep-graph",
"help": "nx help",
"postinstall": "ngcc --properties es2015 browser module main --first-only --create-ivy-entry-points"
},
"private": true,
"dependencies": {
"@angular/animations": "9.0.0",
"@angular/common": "9.0.0",
"@angular/compiler": "9.0.0",
"@angular/core": "9.0.0",
"@angular/forms": "9.0.0",
"@angular/localize": "^9.1.0",
"@angular/platform-browser": "9.0.0",
"@angular/platform-browser-dynamic": "9.0.0",
"@angular/router": "9.0.0",
"@angular/service-worker": "^9.0.0",
"@ckeditor/ckeditor5-angular": "^1.2.2",
"@ckeditor/ckeditor5-build-digipop": "jumpmouse/ckeditor5-build-digipop",
"@fortawesome/fontawesome-free": "^5.1.0",
"@ng-bootstrap/ng-bootstrap": "^5.0.0-rc.1",
"@ngx-translate/core": "^11.0.1",
"angular-bootstrap-md": "^8.8.0",
"bootstrap": "^4.1.1",
"core-js": "^2.5.4",
"rxjs": "~6.5.0",
"zone.js": "^0.10.2"
},
"devDependencies": {
"@angular-devkit/build-angular": "0.900.1",
"@angular/compiler-cli": "9.0.0",
"@angular/language-service": "9.0.0",
"@angularclass/hmr": "^2.1.3",
"@nrwl/angular": "^9.1.3",
"@nrwl/cli": "^9.1.4",
"@nrwl/cypress": "9.1.3",
"@nrwl/eslint-plugin-nx": "9.1.3",
"@nrwl/express": "9.1.3",
"@nrwl/jest": "9.1.3",
"@nrwl/node": "9.1.3",
"@nrwl/workspace": "9.1.3",
"@types/express": "4.17.0",
"@types/jest": "24.9.1",
"@types/node": "~8.9.4",
"@typescript-eslint/eslint-plugin": "2.19.2",
"@typescript-eslint/parser": "2.19.2",
"codelyzer": "~5.0.1",
"cypress": "^4.1.0",
"dotenv": "6.2.0",
"eslint": "6.8.0",
"eslint-config-prettier": "6.0.0",
"ftp-deploy": "^2.3.6",
"hads": "^1.7.0",
"husky": "^3.0.0",
"jest": "24.9.0",
"jest-preset-angular": "8.0.0",
"nodemon": "^2.0.2",
"path": "^0.12.7",
"pm2": "^4.2.3",
"prettier": "1.19.1",
"pretty-quick": "^2.0.1",
"rimraf": "^3.0.2",
"ts-jest": "24.0.0",
"ts-node": "~7.0.0",
"tslint": "~6.0.0",
"tslint-config-prettier": "^1.14.0",
"typescript": "~3.7.4"
},
"husky": {
"hooks": {
"pre-commit": "npm run f:staged",
"pre-push": "npm run affected:lint"
}
}
}