forked from angular-split/angular-split
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
76 lines (76 loc) · 3.07 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
{
"name": "angular-split-app",
"version": "0.0.0",
"scripts": {
"ng": "ng",
"start": "ng serve",
"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": "^13.2.2",
"@angular/common": "^13.2.2",
"@angular/compiler": "^13.2.2",
"@angular/core": "^13.2.2",
"@angular/forms": "^13.2.2",
"@angular/platform-browser": "^13.2.2",
"@angular/platform-browser-dynamic": "^13.2.2",
"@angular/router": "^13.2.2",
"angular-cli-ghpages": "^1.0.0",
"bootstrap": "5.1.3",
"core-js": "3.19.1",
"husky": "^7.0.4",
"lint-staged": "^12.0.3",
"lodash": "4.17.21",
"marked": "4.0.4",
"ngx-bootstrap": "8.0.0",
"prettier": "^2.4.1",
"rxjs": "7.4.0",
"tsickle": "^0.46.0",
"zone.js": "~0.11.4"
},
"devDependencies": {
"@angular-devkit/architect": "^0.1302.3",
"@angular-devkit/build-angular": "^13.2.3",
"@angular-devkit/core": "^13.2.3",
"@angular-devkit/schematics": "^13.2.3",
"@angular/cli": "^13.2.3",
"@angular/compiler-cli": "^13.2.2",
"@angular/language-service": "^13.2.2",
"@types/marked": "^4.0.1",
"@types/node": "16.11.9",
"codelyzer": "^6.0.2",
"concurrently": "6.4.0",
"cypress": "9.0.0",
"ng-packagr": "^13.0.6",
"npm-run-all": "4.1.5",
"postcss": "7.0.39",
"serve": "^13.0.2",
"ts-node": "10.4.0",
"tslib": "^2.3.1",
"tslint": "~6.1.3",
"typescript": "4.4.4",
"webpack-bundle-analyzer": "4.5.0"
},
"lint-staged": {
"*.{js,json,css,scss,less,md,ts,tsx,html,component.html,graphql}": [
"prettier --write"
]
}
}