forked from angular-split/angular-split
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 3.11 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 3.11 KB
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
{
"name": "angular-split-app",
"version": "0.0.0",
"scripts": {
"ng": "ng",
"start": "ng serve",
"lint": "ng lint",
"app_build": "npm run lib_build && ng build --prod --base-href /angular-split/ && npm run app_lazy_build && npm run app_lazy2_build",
"app_lazy_build": "ng build angular-split-app-lazy --prod --base-href /angular-split/lazy --deploy-url /angular-split/lazy/",
"app_lazy2_build": "ng build angular-split-app-lazy2 --prod --base-href /angular-split/lazy2 --deploy-url /angular-split/lazy2/",
"app_analyze": "npm run lib_build && ng build --prod --stats-json && webpack-bundle-analyzer dist/angular-split-app/stats.json",
"lib_build": "ng build angular-split && npm run lib_copy_license && npm run lib_copy_readme",
"lib_copy_license": "cpx ./LICENSE ./dist/angular-split",
"lib_copy_readme": "cpx ./README.md ./dist/angular-split",
"lib_tgz": "npm run lib_build && cd dist/angular-split && npm pack",
"lib_pub_next": "npm run lib_build && npm publish --tag next ./dist/angular-split",
"lib_pub_latest": "npm run lib_build && npm publish --tag latest ./dist/angular-split",
"cypress_dev": "npm run lib_build && ng build --prod && concurrently \"ng serve --port 4242\" \"cypress open\"",
"cypress_prod": "npm run cypress_build && run-p --race cypress_serve cypress_open",
"cypress_ci": "npm run cypress_build && run-p --race cypress_serve cypress_run",
"cypress_build": "npm run lib_build && ng build angular-split-app --prod --base-href /angular-split-app/ && ng build angular-split-app-lazy --prod --base-href /angular-split-app/lazy --deploy-url /angular-split-app/lazy/ && ng build angular-split-app-lazy2 --prod --base-href /angular-split-app/lazy2 --deploy-url /angular-split-app/lazy2/",
"cypress_serve": "http-server ./dist -a localhost -p 4242 -c-1",
"cypress_open": "cypress open --config baseUrl=http://localhost:4242/angular-split-app/",
"cypress_run": "cypress run --config baseUrl=http://localhost:4242/angular-split-app/"
},
"private": true,
"dependencies": {
"@angular/animations": "8.0.2",
"@angular/common": "8.0.2",
"@angular/compiler": "8.0.2",
"@angular/core": "8.0.2",
"@angular/forms": "8.0.2",
"@angular/http": "7.2.9",
"@angular/platform-browser": "8.0.2",
"@angular/platform-browser-dynamic": "8.0.2",
"@angular/router": "8.0.2",
"bootstrap": "4.3.1",
"core-js": "2.6.5",
"lodash": "4.17.11",
"marked": "0.6.1",
"ngx-bootstrap": "3.2.0",
"rxjs": "6.5.2",
"zone.js": "0.9.1"
},
"devDependencies": {
"@angular-devkit/build-angular": "0.800.3",
"@angular-devkit/build-ng-packagr": "0.800.3",
"@angular/cli": "8.0.3",
"@angular/compiler-cli": "8.0.2",
"@angular/language-service": "8.0.2",
"@types/node": "10.12.3",
"codelyzer": "4.5.0",
"concurrently": "4.0.1",
"cpx": "1.5.0",
"cypress": "3.2.0",
"http-server": "0.11.1",
"ng-packagr": "5.3.0",
"npm-run-all": "4.1.3",
"ts-node": "7.0.1",
"tsickle": "0.35.0",
"tslib": "1.10.0",
"tslint": "5.11.0",
"typescript": "3.4.5",
"webpack-bundle-analyzer": "3.1.0"
}
}