-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 3.28 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
{
"name": "ngx-material-auth",
"version": "0.0.0",
"scripts": {
"start": "npm run stack",
"stack": "run-s clear:dist stack:only",
"stack:showcase": "run-s clear:dist stack:onlyShowcase",
"showcase": "ng serve ngx-material-auth-showcase",
"build:watch": "ng build ngx-material-auth --watch",
"api": "nodemon --watch api-data.ts --watch api.ts --watch dist/ngx-material-auth/public-api.d.ts api.ts",
"lint": "eslint projects --max-warnings 0",
"lint:fix": "eslint projects --fix",
"stack:only": "concurrently --kill-others 'npm run build:watch' 'run-s waitOn:build api' 'run-s waitOn:build showcase'",
"stack:onlyShowcase": "concurrently --kill-others 'npm run build:watch' 'run-s waitOn:build showcase'",
"clear:dist": "rimraf dist/ngx-material-auth",
"waitOn:build": "wait-on dist/ngx-material-auth",
"waitOn:server": "wait-on http://localhost:4200",
"build": "ng build ngx-material-auth",
"build:prod": "run-s build copyToDist",
"copyToDist": "run-s copyToDist:readme copyToDist:contributing copyToDist:license",
"copyToDist:readme": "ncp ./README.md ./dist/ngx-material-auth/README.md",
"copyToDist:contributing": "ncp ./CONTRIBUTING.md ./dist/ngx-material-auth/CONTRIBUTING.md",
"copyToDist:license": "ncp ./LICENSE.md ./dist/ngx-material-auth/LICENSE.md",
"test": "concurrently --kill-others 'npm run build:watch' 'run-s waitOn:build api' 'run-s waitOn:build test:showcase'",
"test:ci": "concurrently --kill-others --success first 'npm run api' 'npm run test:showcase:ci'",
"test:showcase": "ng test ngx-material-auth-showcase",
"test:showcase:ci": "ng test ngx-material-auth-showcase --browsers=ChromeHeadless --watch=false"
},
"private": true,
"dependencies": {
"@angular/animations": "^18.0.1",
"@angular/cdk": "^18.0.1",
"@angular/common": "^18.0.1",
"@angular/compiler": "^18.0.1",
"@angular/core": "^18.0.1",
"@angular/forms": "^18.0.1",
"@angular/material": "^18.0.1",
"@angular/platform-browser": "^18.0.1",
"@angular/platform-browser-dynamic": "^18.0.1",
"@angular/router": "^18.0.1",
"@fortawesome/angular-fontawesome": "^0.15.0",
"@fortawesome/free-solid-svg-icons": "^6.7.2",
"rxjs": "~7.8.1",
"tslib": "^2.6.2",
"zone.js": "~0.14.6"
},
"devDependencies": {
"@angular-devkit/build-angular": "^18.0.2",
"@angular/cli": "~18.0.2",
"@angular/compiler-cli": "^18.0.1",
"@simplewebauthn/browser": "^10.0.0",
"@types/jasmine": "~5.1.4",
"@types/qrcode": "^1.5.5",
"concurrently": "^8.2.2",
"eslint-config-service-soft": "^1.5.8",
"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.0.0",
"ngx-material-navigation": "^18.0.0",
"nodemon": "^3.1.2",
"npm-run-all": "^4.1.5",
"qrcode": "^1.5.3",
"ts-node": "^10.9.2",
"typescript": "~5.5",
"wait-on": "^7.2.0"
}
}