-
Notifications
You must be signed in to change notification settings - Fork 26
/
Copy pathpackage.json
126 lines (126 loc) · 4.38 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
{
"name": "mesh-ui",
"version": "1.3.6",
"license": "Apache-2.0",
"scripts": {
"ng": "ng",
"start-original": "ng serve",
"start": "ng serve --verbose --proxy-config proxy.conf.json --live-reload true",
"build": "ng build --prod",
"generate-models": "node config/build-models-from-raml",
"test": "ng test --tsConfig=tsconfig.json",
"test-ci": "ng test --tsConfig=tsconfig.json --watch=false --browsers DockerChromeHeadless --reporters junit",
"test-no-sourcemaps": "ng test -sm=false --browsers=ChromeHeadless",
"lint": "ng lint",
"e2e-protractor": "ng e2e",
"precommit": "lint-staged",
"postcommit": "git update-index --again",
"mesh": "docker run --rm --name mesh-demo -p '8080:8080' -e MESH_ELASTICSEARCH_URL=null -e MESH_ELASTICSEARCH_START_EMBEDDED=false -e MESH_MONITORING_ENABLED=false gentics/mesh-demo",
"mesh-daemon": "docker run --rm --name mesh-demo -d -p '8080:8080' -e MESH_ELASTICSEARCH_URL=null -e MESH_ELASTICSEARCH_START_EMBEDDED=false -e MESH_MONITORING_ENABLED=false gentics/mesh-demo",
"mesh-ci": "docker pull gentics/mesh-demo && npm run mesh-daemon",
"e2e": "cross-env MESHUI_URL=http://localhost:4200 testcafe",
"e2e-watch": "cross-env MESHUI_URL=http://localhost:4200 testcafe --live",
"e2e-headless": "cross-env MESHUI_URL=http://localhost:4200 testcafe 'chrome:headless --window-size=1920x1080'",
"e2e-ci": "cross-env TS_NODE_COMPILER_OPTIONS='{\"module\":\"commonjs\"}' ts-node testcafe/test-ci.ts"
},
"lint-staged": {
"concurrent": false,
"subTaskConcurrency": 1,
"linters": {
"*.ts": [
"tslint --fix",
"prettier --write",
"git add"
],
"*.html": [
"js-beautify -r",
"git add"
]
}
},
"private": true,
"dependencies": {
"@angular/animations": "^8.2.9",
"@angular/cdk": "^7.3.7",
"@angular/common": "^8.2.9",
"@angular/compiler": "^8.2.9",
"@angular/core": "^8.2.9",
"@angular/forms": "^8.2.9",
"@angular/platform-browser": "^8.2.9",
"@angular/platform-browser-dynamic": "^8.2.9",
"@angular/platform-server": "^8.2.9",
"@angular/router": "^8.2.9",
"@angularclass/conventions-loader": "^1.0.13",
"@angularclass/hmr": "^2.1.3",
"@angularclass/hmr-loader": "^3.0.4",
"@ngx-translate/core": "^11.0.1",
"@types/quill": "0.0.31",
"@types/sortablejs": "^1.7.2",
"copy-to-clipboard": "^3.2.0",
"core-js": "^2.4.1",
"cross-env": "^5.2.0",
"foundation-sites": "^6.5.3",
"gentics-ui-core": "^7.10.0",
"gentics-ui-image-editor": "^0.4.0",
"http-server": "^0.12.1",
"ie-shim": "^0.1.0",
"immutablets": "^0.11.0",
"jwt-decode": "^2.2.0",
"material-design-icons-iconfont": "^5.0.1",
"monaco-editor": "^0.10.1",
"ngx-cookie-service": "^2.2.0",
"ngx-pagination": "^3.1.0",
"node-sass": "^4.13.1",
"primeicons": "^2.0.0",
"primeng": "^8.0.2",
"quill": "^1.3.7",
"quill-table": "^1.0.0",
"ramda": "^0.25.0",
"reflect-metadata": "^0.1.10",
"rxjs": "^6.5.3",
"rxjs-compat": "^6.5.3",
"rxjs-tslint": "^0.1.7",
"testcafe": "^1.8.1",
"tslib": "^1.10.0",
"web-animations-js": "^2.3.2",
"zone.js": "~0.9.1"
},
"devDependencies": {
"@angular-devkit/build-angular": "^0.803.24",
"@angular/cli": "^8.3.7",
"@angular/compiler-cli": "^8.2.9",
"@angular/language-service": "^8.2.9",
"@types/http-server": "^0.10.0",
"@types/jasmine": "~3.3.12",
"@types/jasminewd2": "~2.0.6",
"@types/jwt-decode": "^2.2.1",
"@types/node": "^6.0.118",
"@types/ramda": "^0.25.21",
"@types/request-promise": "^4.1.41",
"codelyzer": "^5.0.1",
"husky": "^0.14.3",
"jasmine-core": "^3.4.0",
"jasmine-spec-reporter": "^4.2.1",
"js-beautify": "^1.7.5",
"karma": "^4.1.0",
"karma-chrome-launcher": "^2.2.0",
"karma-cli": "^2.0.0",
"karma-coverage-istanbul-reporter": "^2.0.5",
"karma-jasmine": "^2.0.1",
"karma-jasmine-html-reporter": "^1.4.1",
"karma-junit-reporter": "^2.0.1",
"lint-staged": "^7.0.5",
"mesh-model-generator": "^0.3.1",
"prettier": "^1.12.1",
"protractor": "^6.0.0",
"raw-loader": "^0.5.1",
"request": "^2.87.0",
"request-promise": "^4.2.2",
"testcafe-reporter-junit": "^3.0.0",
"ts-node": "^8.4.1",
"tslint": "~5.8.0",
"typescript": "~3.5.3",
"uuid-random": "^1.0.6",
"webdriver-manager": "^13.0.0"
}
}