forked from angular-split/angular-split
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 3.17 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 3.17 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
67
{
"name": "angular-split-app",
"version": "0.0.0",
"scripts": {
"ng": "ng",
"start": "ng serve",
"lint": "ng lint",
"build&serve": "ng build angular-split && npm run start",
"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": "7.2.9",
"@angular/common": "7.2.9",
"@angular/compiler": "7.2.9",
"@angular/core": "7.2.9",
"@angular/forms": "7.2.9",
"@angular/http": "7.2.9",
"@angular/platform-browser": "7.2.9",
"@angular/platform-browser-dynamic": "7.2.9",
"@angular/router": "7.2.9",
"bootstrap": "4.3.1",
"core-js": "2.6.5",
"lodash": "4.17.11",
"marked": "0.6.1",
"ngx-bootstrap": "3.2.0",
"rxjs": "6.4.0",
"zone.js": "0.8.29"
},
"devDependencies": {
"@angular-devkit/build-angular": "0.13.6",
"@angular-devkit/build-ng-packagr": "0.13.6",
"@angular/cli": "7.3.6",
"@angular/compiler-cli": "7.2.9",
"@angular/language-service": "7.2.9",
"@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": "4.4.0",
"npm-run-all": "4.1.3",
"ts-node": "7.0.1",
"tsickle": "0.33.1",
"tslib": "1.9.3",
"tslint": "5.11.0",
"typescript": "3.2.4",
"webpack-bundle-analyzer": "3.1.0"
}
}