-
Notifications
You must be signed in to change notification settings - Fork 43
/
package.json
58 lines (58 loc) · 2.15 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
{
"name": "ngx-translate-router-demo",
"version": "0.0.0",
"scripts": {
"ng": "npx ng",
"start": "npx ng serve",
"build": "npm run build:main && npm run build:http-loader",
"build:main": "npx ng build --configuration production ngx-translate-router",
"build:http-loader": "npx ng build --configuration production ngx-translate-router-http-loader",
"build:scully-plugin": "mkdir dist/ngx-translate-router-scully-plugin/ && cp ./projects/ngx-translate-router-scully-plugin/package.json dist/ngx-translate-router-scully-plugin/ && npx tsc ./projects/ngx-translate-router-scully-plugin/src/lib/scully-plugin.ts -d --outDir dist/ngx-translate-router-scully-plugin/",
"test": "npx ng test",
"lint": "npx ng lint",
"e2e": "npx ng e2e",
"serve:ssr:ngx-translate-router-demo": "node dist/ngx-translate-router-demo/server/server.mjs"
},
"private": true,
"dependencies": {
"@angular/animations": "18.0.1",
"@angular/common": "18.0.1",
"@angular/compiler": "18.0.1",
"@angular/core": "18.0.1",
"@angular/platform-browser": "18.0.1",
"@angular/platform-browser-dynamic": "18.0.1",
"@angular/platform-server": "18.0.1",
"@angular/router": "18.0.1",
"@angular/ssr": "^18.0.2",
"@ngx-translate/core": "15.0.0",
"@ngx-translate/http-loader": "8.0.0",
"@scullyio/scully": "0.0.102",
"express": "^4.18.2",
"rxjs": "7.8.0",
"tslib": "2.3.1",
"zone.js": "~0.14.6"
},
"devDependencies": {
"@angular-devkit/build-angular": "18.0.2",
"@angular/cli": "18.0.2",
"@angular/compiler-cli": "18.0.1",
"@angular/language-service": "18.0.1",
"@types/express": "^4.17.17",
"@types/jasmine": "~3.10.2",
"@types/jasminewd2": "~2.0.8",
"@types/node": "18.11.9",
"browser-sync": "^3.0.0",
"codelyzer": "6.0.2",
"jasmine-core": "~3.10.1",
"jasmine-spec-reporter": "~7.0.0",
"karma": "~6.3.7",
"karma-chrome-launcher": "~3.1.0",
"karma-coverage-istanbul-reporter": "~3.0.2",
"karma-jasmine": "~4.0.1",
"karma-jasmine-html-reporter": "1.7.0",
"ng-packagr": "18.0.0",
"protractor": "~7.0.0",
"ts-node": "~10.4.0",
"typescript": "5.4.5"
}
}