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) · 3.1 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 3.1 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",
"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": "^17.0.2",
"@angular/common": "^17.0.2",
"@angular/compiler": "^17.0.2",
"@angular/core": "^17.0.2",
"@angular/forms": "^17.0.2",
"@angular/platform-browser": "^17.0.2",
"@angular/platform-browser-dynamic": "^17.0.2",
"@angular/router": "^17.0.2",
"angular-cli-ghpages": "^1.0.6",
"bootstrap": "5.3.1",
"core-js": "3.32.1",
"husky": "^8.0.3",
"lint-staged": "^14.0.1",
"marked": "7.0.4",
"ngx-bootstrap": "11.0.2",
"prettier": "^3.0.2",
"rxjs": "7.8.1",
"tsickle": "^0.46.3",
"zone.js": "~0.14.2"
},
"devDependencies": {
"@angular-devkit/architect": "^0.1700.0",
"@angular-devkit/build-angular": "^17.0.0",
"@angular-devkit/core": "^17.0.0",
"@angular-devkit/schematics": "^17.0.0",
"@angular/cli": "^17.0.0",
"@angular/compiler-cli": "^17.0.2",
"@angular/language-service": "^17.0.2",
"@types/marked": "^5.0.1",
"@types/node": "20.5.4",
"codelyzer": "^6.0.2",
"concurrently": "8.2.1",
"cypress": "12.17.4",
"ng-packagr": "^17.0.0",
"npm-run-all": "4.1.5",
"postcss": "8.4.28",
"serve": "^14.2.1",
"ts-node": "10.9.1",
"tslib": "^2.6.2",
"tslint": "~6.1.3",
"typescript": "5.2.2",
"webpack-bundle-analyzer": "4.9.0"
},
"lint-staged": {
"*.{js,json,css,scss,less,md,ts,tsx,html,component.html,graphql}": [
"prettier --write"
]
}
}