This repository has been archived by the owner on Oct 9, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 2.42 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
{
"name": "volvox-ng",
"version": "0.0.0",
"author": {
"name": "Volvox",
"url": "https://volvox.tech",
"email": "smoutinho@volvox.tech"
},
"scripts": {
"ng": "ng",
"start": "ng serve",
"build": "ng build",
"build:core": "npm run build core -- --configuration production",
"build:material": "npm run build material -- --configuration production",
"lint": "ng lint",
"postbuild": "npm run build:schematics",
"build:schematics": "tsc -p projects/material/tsconfig.schematics.json && npm run copy-schematics",
"copy-schematics": "gulp copy:schematic-schemas && gulp copy:schematic-files && gulp copy:schematic-collection"
},
"private": false,
"dependencies": {
"@angular/animations": "15.0.4",
"@angular/cdk": "15.0.3",
"@angular/common": "15.0.4",
"@angular/compiler": "15.0.4",
"@angular/core": "15.0.4",
"@angular/forms": "15.0.4",
"@angular/material": "15.0.3",
"@angular/platform-browser": "15.0.4",
"@angular/platform-browser-dynamic": "15.0.4",
"@angular/router": "15.0.4",
"@ngx-translate/core": "13.0.0",
"@ngx-translate/http-loader": "6.0.0",
"rxjs": "7.5.6",
"tslib": "2.3.1",
"zone.js": "~0.11.4"
},
"devDependencies": {
"@angular-devkit/build-angular": "^15.0.4",
"@angular-eslint/builder": "^15.1.0",
"@angular-eslint/eslint-plugin": "^15.1.0",
"@angular-eslint/schematics": "^15.1.0",
"@angular/cli": "^15.0.4",
"@angular/compiler-cli": "^15.0.4",
"@types/jasmine": "~3.7.1",
"@types/jasminewd2": "~2.0.9",
"@types/node": "^12.11.1",
"@typescript-eslint/eslint-plugin": "^5.43.0",
"@typescript-eslint/parser": "^5.43.0",
"eslint": "^8.28.0",
"eslint-plugin-jsdoc": "^37.7.0",
"eslint-plugin-import": "2.25.2",
"eslint-plugin-prefer-arrow": "^1.2.3",
"gulp": "^4.0.2",
"jasmine-core": "^3.9.0",
"jasmine-spec-reporter": "^7.0.0",
"karma": "^6.3.4",
"karma-chrome-launcher": "^3.1.0",
"karma-coverage-istanbul-reporter": "^3.0.3",
"karma-jasmine": "^4.0.1",
"karma-jasmine-html-reporter": "^1.7.0",
"ng-packagr": "~15.0.3",
"protractor": "~7.0.0",
"ts-node": "~8.3.0",
"typescript": "~4.8.2"
}
}