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
76 lines (76 loc) · 2.88 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 2.88 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
{
"name": "angular-split-app",
"version": "0.0.0",
"scripts": {
"ng": "ng",
"start": "ng serve",
"lint": "ng lint",
"app_build": "yarn lib_build && ng build --prod --base-href /angular-split/",
"app_analyze": "yarn lib_build && ng build --prod --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 --prod && 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 --prod",
"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": "^11.0.2",
"@angular/common": "^11.0.2",
"@angular/compiler": "^11.0.2",
"@angular/core": "^11.0.2",
"@angular/forms": "^11.0.2",
"@angular/platform-browser": "^11.0.2",
"@angular/platform-browser-dynamic": "^11.0.2",
"@angular/router": "^11.0.2",
"angular-cli-ghpages": "^0.6.2",
"bootstrap": "4.5.3",
"core-js": "3.7.0",
"husky": "^4.3.0",
"lint-staged": "^10.5.1",
"lodash": "4.17.20",
"marked": "1.2.5",
"ngx-bootstrap": "6.2.0",
"prettier": "^2.2.0",
"rxjs": "6.6.3",
"tsickle": "^0.39.1",
"zone.js": "~0.10.2"
},
"devDependencies": {
"@angular-devkit/build-angular": "0.1100.2",
"@angular/cli": "^11.0.2",
"@angular/compiler-cli": "^11.0.2",
"@angular/language-service": "^11.0.2",
"@types/node": "14.14.9",
"codelyzer": "^6.0.1",
"concurrently": "5.3.0",
"cypress": "5.6.0",
"ng-packagr": "^11.0.3",
"npm-run-all": "4.1.5",
"serve": "^11.3.2",
"ts-node": "9.0.0",
"tslib": "^2.0.0",
"tslint": "~6.1.3",
"typescript": "4.0.5",
"webpack-bundle-analyzer": "4.1.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,json,css,scss,less,md,ts,tsx,html,component.html,graphql}": [
"prettier --write"
]
}
}