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
77 lines (77 loc) · 3.13 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 3.13 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
68
69
70
71
72
73
74
75
76
77
{
"name": "angular-split-app",
"version": "0.0.0",
"scripts": {
"ng": "ng",
"start": "ng serve",
"lib-start": "ng build angular-split --watch",
"lint": "ng lint",
"app_build": "yarn lib_build && ng build --configuration production --base-href /angular-split/",
"app_analyze": "yarn lib_build && ng build --configuration production --stats-json && webpack-bundle-analyzer dist/angular-split-app/stats.json",
"deploy": "ng deploy angular-split-app --branch main --base-href 'https://angular-split.github.io/' --repo https://github.com/angular-split/angular-split.github.io.git",
"lib_build": "ng build angular-split && yarn lib_copy",
"lib_copy": "cp ./LICENSE ./README.md ./dist/angular-split",
"lib_tgz": "yarn lib_build && cd dist/angular-split && npm pack",
"lib_pub_next": "yarn lib_build && npm publish --tag next ./dist/angular-split",
"lib_pub_latest": "yarn lib_build && npm publish --tag latest ./dist/angular-split",
"cypress_dev": "yarn lib_build && ng build --configuration production && concurrently \"ng serve --port 4242\" \"cypress open\"",
"cypress_prod": "yarn cypress_build && run-p --race cypress_serve cypress_open",
"cypress_ci": "yarn cypress_build && run-p --race cypress_serve cypress_run",
"cypress_build": "yarn lib_build && ng build angular-split-app --configuration production",
"cypress_serve": "serve -s -l 4242 ./dist/angular-split-app",
"cypress_open": "cypress open --config baseUrl=http://localhost:4242/",
"cypress_run": "cypress run --config baseUrl=http://localhost:4242/",
"format": "prettier --write '**/*.{js,json,css,scss,less,md,ts,tsx,html,component.html,graphql}'"
},
"private": true,
"dependencies": {
"@angular/animations": "^15.2.0",
"@angular/common": "^15.2.0",
"@angular/compiler": "^15.2.0",
"@angular/core": "^15.2.0",
"@angular/forms": "^15.2.0",
"@angular/platform-browser": "^15.2.0",
"@angular/platform-browser-dynamic": "^15.2.0",
"@angular/router": "^15.2.0",
"angular-cli-ghpages": "^1.0.5",
"bootstrap": "5.2.3",
"core-js": "3.28.0",
"husky": "^8.0.3",
"lint-staged": "^13.1.2",
"lodash": "4.17.21",
"marked": "4.2.12",
"ngx-bootstrap": "10.2.0",
"prettier": "^2.8.4",
"rxjs": "7.8.0",
"tsickle": "^0.46.3",
"zone.js": "~0.12.0"
},
"devDependencies": {
"@angular-devkit/architect": "^0.1502.0",
"@angular-devkit/build-angular": "^15.2.0",
"@angular-devkit/core": "^15.2.0",
"@angular-devkit/schematics": "^15.2.0",
"@angular/cli": "^15.2.0",
"@angular/compiler-cli": "^15.2.0",
"@angular/language-service": "^15.2.0",
"@types/marked": "^4.0.8",
"@types/node": "18.14.0",
"codelyzer": "^6.0.2",
"concurrently": "7.6.0",
"cypress": "12.6.0",
"ng-packagr": "^15.1.2",
"npm-run-all": "4.1.5",
"postcss": "8.4.21",
"serve": "^14.2.0",
"ts-node": "10.9.1",
"tslib": "^2.5.0",
"tslint": "~6.1.3",
"typescript": "4.9.5",
"webpack-bundle-analyzer": "4.8.0"
},
"lint-staged": {
"*.{js,json,css,scss,less,md,ts,tsx,html,component.html,graphql}": [
"prettier --write"
]
}
}