generated from frango9000/angular-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
102 lines (102 loc) · 3.41 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": "pokedex-ng",
"version": "0.0.1",
"license": "MIT",
"author": {
"email": "[email protected] ",
"name": "Francisco Sanchez",
"url": "https://frango9000.github.io/"
},
"homepage": "https://frango9000.github.io/pokedex-ng/pokemon",
"repository": {
"url": "https://github.com/frango9000/pokedex-ng",
"type": "git"
},
"bugs": {
"url": "https://github.com/frango9000/pokedex-ng/issues"
},
"scripts": {
"ng": "nx",
"postinstall": "node ./decorate-angular-cli.js && ngcc --properties es2020 browser module main",
"nx": "nx",
"start": "ng serve -o --port=4200",
"start:prod": "angular-http-server -o -p 8080 --path dist/apps/pokedex-ng --baseHref pokedex-ng",
"build": "ng build",
"deploy": "ng deploy",
"quick-deploy": "ng deploy --no-build",
"test": "nx run-many --target=test --all",
"lint": "nx workspace-lint && nx run-many --target=lint --all",
"format": "nx format:write",
"format:write": "nx format:write --all",
"format:check": "nx format:check --base=origin/development --head=HEAD --parallel",
"update": "nx migrate latest",
"dep-graph": "nx dep-graph",
"validate": "npm run lint && npm run format:check && npm run test && ng build",
"data-generator": "tsc --project ./libs/data/tsconfig.lib.json && node --loader ts-node/esm ./dist/out-tsc/libs/data/src/lib/generate-all.js"
},
"private": true,
"dependencies": {
"@angular/animations": "15.1.0",
"@angular/cdk": "15.1.0",
"@angular/common": "15.1.0",
"@angular/compiler": "15.1.0",
"@angular/core": "15.1.0",
"@angular/forms": "15.1.0",
"@angular/platform-browser": "15.1.0",
"@angular/platform-browser-dynamic": "15.1.0",
"@angular/router": "15.1.0",
"@fortawesome/fontawesome-free": "6.2.1",
"@ngneat/transloco": "4.2.2",
"@ngneat/until-destroy": "9.2.3",
"@nrwl/angular": "15.5.1",
"@popperjs/core": "2.11.6",
"@types/chart.js": "2.9.37",
"angular-bootstrap-md": "14.0.0",
"animate.css": "4.1.1",
"bootstrap": "5.2.3",
"chart.js": "4.1.2",
"hammerjs": "2.0.8",
"jquery": "3.6.3",
"lodash-es": "4.17.21",
"ngx-infinite-scroll": "15.0.0",
"rxjs": "7.8.0",
"tslib": "2.4.1",
"zone.js": "0.12.0"
},
"devDependencies": {
"@angular-devkit/build-angular": "15.1.1",
"@angular-devkit/core": "15.1.1",
"@angular-devkit/schematics": "15.1.1",
"@angular-eslint/eslint-plugin": "15.2.0",
"@angular-eslint/eslint-plugin-template": "15.2.0",
"@angular-eslint/template-parser": "15.2.0",
"@angular/cli": "~15.1.1",
"@angular/compiler-cli": "15.1.0",
"@angular/language-service": "15.1.0",
"@nrwl/eslint-plugin-nx": "15.5.1",
"@nrwl/jest": "15.5.1",
"@nrwl/node": "15.5.1",
"@nrwl/workspace": "15.5.1",
"@types/jest": "29.2.5",
"@types/node": "18.11.18",
"@typescript-eslint/eslint-plugin": "5.48.1",
"@typescript-eslint/parser": "5.48.1",
"angular-cli-ghpages": "1.0.5",
"angular-http-server": "1.11.1",
"axios": "1.2.2",
"axios-observable": "2.0.0",
"codelyzer": "6.0.2",
"dotenv": "16.0.3",
"eslint": "8.31.0",
"eslint-config-prettier": "8.6.0",
"jest": "29.3.1",
"jest-environment-jsdom": "29.3.1",
"jest-preset-angular": "12.2.3",
"npm-check-updates": "16.6.2",
"nx": "15.5.1",
"prettier": "2.8.3",
"ts-jest": "29.0.5",
"ts-node": "10.9.1",
"typescript": "4.9.4"
}
}