-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
74 lines (74 loc) · 2.64 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": "e2e-test-application",
"version": "0.0.0",
"description": "",
"license": "Apache-2.0",
"scripts": {
"build": "npm run buildConfig && ng build",
"lint": "ng lint",
"e2e:open": "cypress open --env configFile=e2etestapp",
"e2e:open:external": "cypress open --env configFile=externalmf",
"e2e:run": "cypress run --env configFile=e2etestapp --browser chrome -c video=false",
"e2e:run:external": "cypress run --env configFile=externalmf --browser chrome -c video=false",
"e2e:run:electron": "cypress run",
"buildConfig": "webpack --config webpack-generateConfig.config",
"startExternalMf": "http-server --port 8090 ./externalMf",
"start": "concurrently \"npm run buildConfig -- --watch\" \"ng serve --host 0.0.0.0 --port 4200\" \"npm run startExternalMf\""
},
"dependencies": {
"@angular/animations": "^6.1.0",
"@angular/common": "^6.1.0",
"@angular/compiler": "^6.1.0",
"@angular/core": "^6.1.0",
"@angular/forms": "^6.1.0",
"@angular/http": "^6.1.0",
"@angular/platform-browser": "^6.1.0",
"@angular/platform-browser-dynamic": "^6.1.0",
"@angular/router": "^6.1.0",
"@luigi-project/plugin-auth-oauth2": "1.0.0",
"@luigi-project/plugin-auth-oidc": "1.0.0",
"@luigi-project/client": "1.0.0",
"@luigi-project/core": "1.2.1",
"@sap-theming/theming-base-content": "~11.1.24",
"ajv": "^6.1.1",
"core-js": "^2.4.1",
"fundamental-styles": "^0.14.0",
"rxjs": "6.2.0",
"zone.js": "^0.8.14",
"lodash": ">=4.17.13"
},
"devDependencies": {
"@angular-builders/custom-webpack": "7.1.1",
"@angular-builders/dev-server": "7.1.1",
"@angular-devkit/build-angular": "^0.13.9",
"@angular-devkit/core": "0.6.8",
"@angular-devkit/schematics": "^0.6.8",
"@angular/cli": "^6.2.9",
"@angular/compiler-cli": "^7.2.15",
"@angular/language-service": "^6.1.0",
"@babel/core": "^7.0.0",
"@babel/plugin-proposal-class-properties": "^7.2.3",
"@babel/plugin-proposal-optional-chaining": "^7.2.0",
"@babel/preset-env": "^7.2.3",
"@babel/preset-es2017": "^7.0.0-beta.53",
"@babel/register": "^7.0.0",
"@types/jasmine": "~2.8.6",
"@types/jasminewd2": "~2.0.2",
"@types/node": "^6.0.115",
"babel-loader": "^8.0.4",
"babel-preset-minify": "^0.5.0",
"codelyzer": "^4.4.1",
"concurrently": "^4.1.0",
"cypress": "^5.3.0",
"http-server": "0.12.3",
"lodash": ">=4.17.13",
"serialize-javascript": ">=2.1.1",
"tar": ">=4.4.2",
"ts-node": "~3.2.0",
"tslint": "~5.7.0",
"typescript": "~3.2.4",
"webpack": "^4.42.1",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.0"
}
}