forked from SAP/spartacus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
140 lines (140 loc) · 6.74 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
{
"name": "storefrontapp",
"version": "0.1.0",
"license": "Apache-2.0",
"engines": {
"node": ">=10 <12"
},
"scripts": {
"build": "ng build storefrontapp --prod",
"build:assets": "ng build assets && yarn generate:translations",
"build:core:lib": "ng build core && ng build storefrontlib && yarn build:assets",
"build:qa": "ng build -c=qa",
"e2e:cy:open": "yarn --cwd ./projects/storefrontapp-e2e-cypress run cy:open",
"e2e:cy:cli": "yarn --cwd ./projects/storefrontapp-e2e-cypress run cy:cli",
"e2e:cy:run": "yarn --cwd ./projects/storefrontapp-e2e-cypress run cy:run",
"e2e:cy:run:ci": "yarn --cwd ./projects/storefrontapp-e2e-cypress run cy:run",
"e2e:cy:run:mobile": "yarn --cwd ./projects/storefrontapp-e2e-cypress run cy:run:mobile",
"e2e:cy:run:mobile:ci": "yarn --cwd ./projects/storefrontapp-e2e-cypress run cy:run:mobile --record --key $CYPRESS_KEY",
"e2e:cy:run:regression": "yarn --cwd ./projects/storefrontapp-e2e-cypress run cy:run:regression",
"e2e:cy:run:regression:ci": "yarn --cwd ./projects/storefrontapp-e2e-cypress run cy:run:regression --record --key $CYPRESS_KEY",
"e2e:cy:start-open": "start-server-and-test start:ci http-get://localhost:4200 e2e:cy:open",
"e2e:cy:start-run": "start-server-and-test start:ci http-get://localhost:4200 e2e:cy:run",
"e2e:cy:start-run-ci": "start-server-and-test start:ci http-get://localhost:4200 e2e:cy:run:ci",
"e2e:cy:start-run-mobile": "start-server-and-test start:ci http-get://localhost:4200 e2e:cy:run:mobile",
"e2e:cy:start-run-mobile-ci": "start-server-and-test start:ci http-get://localhost:4200 e2e:cy:run:mobile:ci",
"e2e:cy:start-run-regression": "start-server-and-test start:ci http-get://localhost:4200 e2e:cy:run:regression",
"e2e:cy:start-run-regression-ci": "start-server-and-test start:ci http-get://localhost:4200 e2e:cy:run:regression:ci",
"generate:changelog": "ts-node ./scripts/changelog.ts",
"generate:docs": "npx compodoc -p tsconfig.compodoc.json && ./scripts/zip-docs.sh",
"generate:translations": "ts-node ./scripts/generate-translations",
"lint": "ng lint",
"i18n-lint": "i18n-lint -t \"{{,}}\" projects/storefrontlib/src/**/*.html",
"mockserver": "cd ./projects/backend/mockgenerator && npm run start",
"ng": "ng",
"prettier": "prettier --config ./.prettierrc --list-different \"projects/**/*{.ts,.js,.json,.scss,.html}\"",
"prettier-fix": "prettier --config ./.prettierrc --list-different \"projects/**/*{.ts,.js,.json,.scss,.html}\" --write",
"start": "ng serve --proxy-config mock-server/proxy.backend.js",
"start:mock": "ng serve --proxy-config mock-server/proxy.mock.js",
"start:qa": "ng serve -c=qa",
"start:ci": "ng serve -c=ci",
"start:prod": "ng serve --prod",
"start:ssl": "ng serve --ssl",
"start:pwa": "cd ./dist/storefrontapp/ && http-server -p 4200",
"test": "ng test",
"test:core:lib": "concurrently \"ng test core --code-coverage\" \"ng test storefrontlib --code-coverage\"",
"test:storefront:lib": "ng test storefrontlib --sourceMap --code-coverage",
"build:ssr": "ng run storefrontapp:server && webpack --config projects/ssr/webpack.server.config.js --progress --colors",
"start:ssr": "node dist/ssr/server",
"release:assets": "cd projects/assets && release-it && cd ../..",
"release:styles": "cd projects/storefrontstyles && release-it && cd ../..",
"release:lib": "cd projects/storefrontlib && release-it && cd ../..",
"release:core": "cd projects/core && release-it && cd ../..",
"release:assets:with-changelog": "cd projects/assets && release-it --config .release-it.changelog.json && cd ../..",
"release:styles:with-changelog": "cd projects/storefrontstyles && release-it --config .release-it.changelog.json && cd ../..",
"release:lib:with-changelog": "cd projects/storefrontlib && release-it --config .release-it.changelog.json && cd ../..",
"release:core:with-changelog": "cd projects/core && release-it --config .release-it.changelog.json && cd ../..",
"release-notes:assets": "ts-node ./scripts/changelog.ts --verbose --lib assets",
"release-notes:lib": "ts-node ./scripts/changelog.ts --verbose --lib storefront",
"release-notes:core": "ts-node ./scripts/changelog.ts --verbose --lib core",
"release-notes:styles": "ts-node ./scripts/changelog.ts --verbose --lib styles"
},
"private": false,
"dependencies": {
"@angular/animations": "~8.0.0",
"@angular/common": "~8.0.0",
"@angular/compiler": "~8.0.0",
"@angular/core": "~8.0.0",
"@angular/forms": "~8.0.0",
"@angular/platform-browser": "~8.0.0",
"@angular/platform-browser-dynamic": "~8.0.0",
"@angular/platform-server": "~8.0.0",
"@angular/pwa": "^0.800.0",
"@angular/router": "~8.0.0",
"@angular/service-worker": "~8.0.0",
"@compodoc/compodoc": "^1.1.8",
"@ng-bootstrap/ng-bootstrap": "4.1.0",
"@ng-select/ng-select": "^2.13.2",
"@ngrx/effects": "~7.4.0",
"@ngrx/router-store": "~7.4.0",
"@ngrx/store": "~7.4.0",
"@nguniversal/express-engine": "^7.1.1",
"@nguniversal/module-map-ngfactory-loader": "^7.1.1",
"@types/googlemaps": "^3.30.13",
"bootstrap": "^4.2.1",
"core-js": "^2.5.7",
"hamburgers": "^1.1.3",
"i18next": "^15.0.6",
"i18next-xhr-backend": "^2.0.1",
"rxjs": "^6.4.0",
"ts-loader": "^5.3.2",
"zone.js": "^0.9.1"
},
"devDependencies": {
"@angular-devkit/build-angular": "~0.800.0",
"@angular-devkit/build-ng-packagr": "~0.800.0",
"@angular/cli": "~8.0.0",
"@angular/compiler-cli": "~8.0.0",
"@angular/language-service": "~8.0.0",
"@ngrx/store-devtools": "~7.4.0",
"@types/i18next": "^12.1.0",
"@types/jasmine": "~2.8.8",
"@types/jasminewd2": "~2.0.3",
"@types/node": "~10.14.1",
"chalk": "^2.4.2",
"codelyzer": "~5.0.0",
"commander": "^2.20.0",
"concurrently": "^4.1.0",
"conventional-commits-parser": "^3.0.1",
"ejs": "^2.6.1",
"faker": "^4.1.0",
"gh-got": "^8.0.1",
"git-raw-commits": "^2.0.0",
"http-server": "^0.11.1",
"i18n-lint": "jwarby/i18n-lint",
"jasmine-core": "~2.99.1",
"jasmine-marbles": "^0.4.1",
"json-server": "^0.14.2",
"karma": "~4.0.1",
"karma-chrome-launcher": "~2.2.0",
"karma-cli": "^2.0.0",
"karma-coverage": "^1.1.2",
"karma-coverage-istanbul-reporter": "^2.0.5",
"karma-jasmine": "~1.1.2",
"karma-jasmine-html-reporter": "^0.2.2",
"karma-junit-reporter": "^1.2.0",
"ng-packagr": "^5.2.0",
"prettier": "1.16.4",
"release-it": "^10.4.0",
"sass": "^1.20.1",
"semver": "^6.0.0",
"start-server-and-test": "^1.7.13",
"through2": "^3.0.1",
"ts-node": "~8.0.3",
"tsickle": "0.35.0",
"tslib": "^1.9.3",
"tslint": "~5.15.0",
"typescript": "~3.4.3",
"webpack-cli": "^3.3.2"
}
}