-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
76 lines (76 loc) · 3.18 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
73
74
75
76
{
"name": "indice-ng-lib",
"version": "0.0.9-beta.0",
"scripts": {
"ng": "ng",
"start": "ng serve",
"start-app": "ng serve app",
"start-mock-server": "node mock-server.js",
"build": "ng build --prod",
"build-app": "ng build app --configuration=production ",
"build-auth": "ng build ng-auth --configuration=production ",
"build-components": "ng build ng-components --configuration=production",
"build-config": "ng build ng-config --configuration=production",
"postbuild-components": "ts-node ./projects/ng-components/scripts/css-bundle.ts",
"test": "ng test",
"lint": "ng lint",
"build:prod": "cross-env NODE_ENV=production ng build --prod",
"e2e": "ng e2e",
"ts-node": "ts-node",
"publish-components": "cd projects/ng-components && cd../.. && ng build ng-components --configuration=production && ts-node ./projects/ng-components/scripts/css-bundle.ts && cd dist/ng-components && npm publish",
"publish-auth": "cd projects/ng-auth && cd../.. && ng build ng-auth --configuration=production && cd dist/ng-auth && npm publish",
"publish-config": "cd projects/ng-config && cd../.. && ng build ng-config --configuration=production && cd dist/ng-config && npm publish",
"publish-components-beta": "cd projects/ng-components && npm version prerelease --preid beta && cd../.. && ng build ng-components --configuration=production && ts-node ./projects/ng-components/scripts/css-bundle.ts && cd dist/ng-components && npm publish",
"publish-auth-beta": "cd projects/ng-auth && npm version prerelease --preid beta && cd../.. && ng build ng-auth --configuration=production && cd dist/ng-auth && npm publish"
},
"private": false,
"dependencies": {
"@angular/animations": "17.3.6",
"@angular/common": "17.3.6",
"@angular/compiler": "17.3.6",
"@angular/core": "17.3.6",
"@angular/forms": "17.3.6",
"@angular/google-maps": "^17.3.6",
"@angular/platform-browser": "17.3.6",
"@angular/platform-browser-dynamic": "17.3.6",
"@angular/router": "17.3.6",
"@indice/ng-auth": "file:dist/ng-auth",
"@indice/ng-components": "file:dist/ng-components",
"@indice/ng-conf": "file:dist/ng-conf",
"@tailwindcss/aspect-ratio": ">=0.4.0",
"@tailwindcss/forms": "^0.5.7",
"@tailwindcss/typography": "^0.5.13",
"autoprefixer": ">=10.2.6",
"core-js": ">=3.11.0",
"oidc-client-ts": "3.0.1",
"rxjs": "^7.5.0",
"scss-bundle": "^3.1.2",
"tailwindcss": "^3.4.3",
"tslib": ">=2.1.0",
"tslint": "~6.1.3",
"uuid": "~9.0.1",
"zone.js": "~0.14.4"
},
"devDependencies": {
"@angular-devkit/build-angular": "^17.3.6",
"@angular/cli": "17.3.6",
"@angular/compiler-cli": "17.3.6",
"@types/jasmine": "~5.1.0",
"@types/node": "^12.11.1",
"@types/uuid": "^9.0.8",
"cross-env": "^7.0.3",
"dotenv": "^8.2.0",
"ini": "^1.3.7",
"jasmine-core": "~5.1.0",
"karma": "~6.4.0",
"karma-chrome-launcher": "~3.2.0",
"karma-coverage": "~2.2.0",
"karma-jasmine": "~5.1.0",
"karma-jasmine-html-reporter": "~2.1.0",
"ng-packagr": "^17.3.0",
"postcss-import": "^15.0.0",
"postcss-nesting": "^12.1.2",
"ts-node": "~10.9.2",
"typescript": "~5.4.5"
}
}