-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 2.3 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 2.3 KB
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
{
"name": "mdl-angular",
"version": "1.7.0",
"scripts": {
"start": "npm-run-all clean --parallel lib:watch showcase:start-waiton",
"build": "run-s lib:build showcase:build",
"test": "run-p lib:test showcase:test",
"lib:build": "nx build mdl-angular",
"lib:watch": "nx build mdl-angular --watch --configuration development",
"lib:test": "nx test mdl-angular",
"showcase:start-waiton": "wait-on dist/mdl-angular/zoom-button/index.d.ts && npm run showcase:start",
"showcase:start": "nx serve showcase",
"showcase:build": "nx build showcase",
"showcase:watch": "nx build showcase --watch --configuration development",
"showcase:test": "nx test showcase",
"clean": "rimraf dist",
"gh-pages": "nx build showcase --output-path docs --base-href /mdl-angular-libs/ && mv docs/browser/* docs",
"publish": "npm run lib:build && cp README.md dist/mdl-angular/ && npm publish dist/mdl-angular/"
},
"private": true,
"dependencies": {
"@angular/animations": "19.2.9",
"@angular/cdk": "19.2.9",
"@angular/common": "19.2.9",
"@angular/compiler": "19.2.9",
"@angular/core": "19.2.9",
"@angular/forms": "19.2.9",
"@angular/material": "19.2.9",
"@angular/material-luxon-adapter": "19.2.9",
"@angular/platform-browser": "19.2.9",
"@angular/platform-browser-dynamic": "19.2.9",
"@angular/router": "19.2.9",
"luxon": "^3.4.4",
"luxon-angular": "^6.0.0",
"rxjs": "~7.8.1",
"tslib": "^2.6.2"
},
"devDependencies": {
"@angular-devkit/build-angular": "19.2.9",
"@angular-devkit/core": "19.2.9",
"@angular-devkit/schematics": "19.2.9",
"@angular/cli": "19.2.9",
"@angular/compiler-cli": "19.2.9",
"@nx/angular": "22.0.3",
"@nx/workspace": "22.0.3",
"@schematics/angular": "^19.0.0",
"@types/jasmine": "~5.1.4",
"@types/luxon": "^3.4.2",
"autoprefixer": "^10.4.17",
"jasmine-core": "~5.1.1",
"karma": "~6.4.2",
"karma-chrome-launcher": "~3.2.0",
"karma-coverage": "~2.2.1",
"karma-jasmine": "~5.1.0",
"karma-jasmine-html-reporter": "~2.1.0",
"ng-packagr": "^19.0.0",
"npm-run-all": "^4.1.5",
"nx": "22.0.3",
"postcss": "^8.4.33",
"prettier": "^3.3.3",
"rimraf": "^5.0.5",
"tailwindcss": "^3.4.1",
"typescript": "~5.5.4",
"wait-on": "^7.2.0"
}
}