-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
74 lines (74 loc) · 2.75 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
{
"name": "ecommerce-storefront-ssr",
"version": "3.0.0",
"scripts": {
"ng": "ng",
"start": "wrangler pages dev dist/cloudflare --compatibility-date=2021-09-20 --experimental-local",
"cf:start": "wrangler pages dev dist/cloudflare --compatibility-date=2021-09-20 --experimental-local",
"build": "ng build",
"watch": "ng build --watch --configuration development",
"test": "ng test",
"dev:ssr": "ng run ecommerce-storefront-ssr:serve-ssr",
"serve:ssr": "node dist/server/main.js",
"build:ssr": "ng build --configuration production --progress && ng run ecommerce-storefront-ssr:server",
"prerender": "ng run ecommerce-storefront-ssr:prerender",
"cf:process": "node ./tools/copy-worker-files.mjs && node ./tools/copy-client-files.mjs && node ./tools/bundle.mjs",
"prestart": "npm run build:ssr && npm run cf:process",
"predeploy": "npm run build:ssr && npm run cf:process",
"cf:deploy": "wrangler pages publish dist/cloudflare"
},
"private": true,
"dependencies": {
"@angular-slider/ngx-slider": "^2.0.4",
"@angular/animations": "^16.0.0",
"@angular/common": "^16.0.0",
"@angular/compiler": "^16.0.0",
"@angular/core": "^16.0.0",
"@angular/forms": "^16.0.0",
"@angular/localize": "^16.0.4",
"@angular/platform-browser": "^16.0.0",
"@angular/platform-browser-dynamic": "^16.0.0",
"@angular/platform-server": "^16.0.0",
"@angular/router": "^16.0.0",
"@fortawesome/fontawesome-free": "^6.4.0",
"@nguniversal/express-engine": "^16.0.2",
"@ngx-pwa/local-storage": "^16.1.2",
"@ngx-translate/core": "^15.0.0",
"bootstrap": "^4.6.0",
"crypto-js": "^4.1.1",
"domino": "^2.1.6",
"express": "^4.15.2",
"localstorage-polyfill": "^1.0.1",
"ngx-bootstrap": "^10.3.0",
"ngx-owl-carousel-o": "^16.0.0",
"ngx-paypal": "^11.0.0",
"ngx-permissions": "^15.0.1",
"ngx-toastr": "^17.0.2",
"rxjs": "~7.8.0",
"tslib": "^2.3.0",
"zone.js": "~0.13.0"
},
"devDependencies": {
"@angular-devkit/build-angular": "^16.0.3",
"@angular/cli": "~16.0.3",
"@angular/compiler-cli": "^16.0.0",
"@cloudflare/workers-types": "^4.20230518.0",
"@esbuild-plugins/node-globals-polyfill": "^0.2.3",
"@esbuild-plugins/node-modules-polyfill": "^0.2.2",
"@miniflare/tre": "^3.0.0-next.13",
"@nguniversal/builders": "^16.0.2",
"@types/express": "^4.17.0",
"@types/jasmine": "~4.3.0",
"@types/node": "^14.15.0",
"esbuild": "^0.17.19",
"fast-glob": "^3.2.12",
"jasmine-core": "~4.6.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.0.0",
"typescript": "~5.0.2",
"wrangler": "^0.0.0-b5b46b4a"
}
}