-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.47 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
{
"name": "groceries",
"version": "4.0.3",
"scripts": {
"ng": "ng",
"start": "ng serve",
"build": "ng build --configuration production --aot --base-href '/groceries/'",
"docker-build": "docker-compose build",
"docker-start": "docker-compose up",
"docker-test-build": "docker build -t b-grocery-list .",
"docker-test-start": "docker run --name groceries -d -p 8080:80 b-grocery-list",
"test": "ng test",
"lint": "ng lint",
"server": "http-server -p 4200 -c-1 dist/groceries",
"e2e": "ng e2e",
"postinstall": "ngcc"
},
"private": true,
"dependencies": {
"@angular/animations": "^13.1.2",
"@angular/cdk": "^13.1.2",
"@angular/common": "^13.1.2",
"@angular/compiler": "^13.1.2",
"@angular/core": "^13.1.2",
"@angular/forms": "^13.1.2",
"@angular/material": "^13.1.2",
"@angular/platform-browser": "^13.1.2",
"@angular/platform-browser-dynamic": "^13.1.2",
"@angular/pwa": "^13.1.3",
"@angular/router": "^13.1.2",
"@angular/service-worker": "^13.1.2",
"rxjs": "~6.5.4",
"zone.js": "~0.11.4"
},
"devDependencies": {
"@angular-devkit/build-angular": "~13.1.3",
"@angular/cli": "~13.1.3",
"@angular/compiler-cli": "^13.1.2",
"@angular/language-service": "^13.1.2",
"@types/node": "~12.11.1",
"codelyzer": "~6.0.1",
"http-server": "^0.12.1",
"ts-node": "~8.3.0",
"tslint": "~6.1.3",
"typescript": "~4.5.4",
"webpack-bundle-analyzer": "^4.4.0"
}
}