-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 2.21 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
{
"name": "ngx-material-tracking",
"version": "0.0.0",
"scripts": {
"start": "npm run stack",
"stack": "concurrently --kill-others 'npm run build:watch' 'run-s waitOn:build showcase'",
"showcase": "ng serve ngx-material-tracking-showcase",
"build": "ng build ngx-material-tracking",
"build:prod": "run-s build copyToDist",
"build:watch": "ng build ngx-material-tracking --watch --configuration development",
"copyToDist": "run-s copyToDist:readme copyToDist:license",
"copyToDist:readme": "ncp ./README.md ./dist/ngx-material-tracking/README.md",
"copyToDist:license": "ncp ./LICENSE.md ./dist/ngx-material-tracking/LICENSE.md",
"test": "ng test",
"lint": "eslint ./ --max-warnings 0",
"lint:fix": "eslint ./ --fix",
"clear:dist": "rimraf dist/ngx-material-tracking",
"waitOn:build": "wait-on dist/ngx-material-tracking"
},
"private": true,
"dependencies": {
"@angular/animations": "~18.1.0",
"@angular/cdk": "^18.1.0",
"@angular/common": "~18.1.0",
"@angular/compiler": "~18.1.0",
"@angular/core": "~18.1.0",
"@angular/forms": "~18.1.0",
"@angular/material": "^18.1.0",
"@angular/platform-browser": "~18.1.0",
"@angular/platform-browser-dynamic": "~18.1.0",
"@angular/router": "~18.1.0",
"rxjs": "~7.8.1",
"tslib": "^2.6.3",
"zone.js": "~0.14.7"
},
"devDependencies": {
"@angular-devkit/build-angular": "~18.1.0",
"@angular/cli": "~18.1.0",
"@angular/compiler-cli": "~18.1.0",
"@fortawesome/angular-fontawesome": "^0.15.0",
"@fortawesome/free-solid-svg-icons": "^6.6.0",
"@types/jasmine": "~5.1.4",
"concurrently": "^8.2.2",
"eslint-config-service-soft": "^1.5.3",
"jasmine-core": "~5.1.2",
"karma": "~6.4.3",
"karma-chrome-launcher": "~3.2.0",
"karma-coverage": "~2.2.1",
"karma-jasmine": "~5.1.0",
"karma-jasmine-html-reporter": "~2.1.0",
"ncp": "^2.0.0",
"ng-packagr": "^18.1.0",
"npm-run-all": "^4.1.5",
"typescript": "~5.5.3",
"wait-on": "^7.2.0"
}
}