-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
60 lines (60 loc) · 2.27 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
{
"name": "pastanaga",
"version": "0.0.0",
"scripts": {
"ng": "ng",
"prestart": "npm run icon_list",
"start": "ng serve demo",
"deploy": "npm run icon_list && ng deploy --base-href=/pastanaga-angular/",
"build:demo": "npm run icon_list && ng build demo --configuration production --base-href /pastanaga-angular/",
"build": "scripts/build.sh",
"export:css": "rm -rf ./dist/css && mkdir ./dist/css && sass ./src/standalone-css.scss ./dist/css/pastanaga.css -I ./src -s compressed && cp -r projects/pastanaga-angular/src/assets/fonts ./dist/css",
"watch": "ng build --watch --configuration development",
"test:lib": "jest --config ./projects/pastanaga-angular/jest.lib.config.js",
"test:lib:watch": "jest --watch --config ./projects/pastanaga-angular/jest.lib.config.js",
"test": "npm run test:lib",
"test:ci": "jest --config ./projects/pastanaga-angular/jest.lib.config.js --runInBand --ci",
"get_version": "cat ./projects/pastanaga-angular/package.json | grep version | head -1 | awk -F: '{ print $2 }' | sed 's/[\",]//g' | tr -d '[[:space:]]'",
"icon_list": "scripts/update-glyphs.sh",
"prettier": "prettier --write ./projects/pastanaga-angular/src"
},
"private": true,
"dependencies": {
"@angular/animations": "^18.1.4",
"@angular/cdk": "^18.1.4",
"@angular/common": "^18.1.4",
"@angular/compiler": "^18.1.4",
"@angular/core": "^18.1.4",
"@angular/forms": "^18.1.4",
"@angular/platform-browser": "^18.1.4",
"@angular/platform-browser-dynamic": "^18.1.4",
"@angular/router": "^18.1.4",
"@ng-web-apis/common": "^2.1.0",
"angular-svg-icon": "^18.0.1",
"date-fns": "^3.6.0",
"rxjs": "^7.8.1",
"tslib": "^2.4.0",
"zone.js": "^0.14.2"
},
"devDependencies": {
"@angular-builders/jest": "^18.0.0",
"@angular-devkit/build-angular": "^18.1.4",
"@angular/cli": "^18.1.4",
"@angular/compiler-cli": "^18.1.4",
"@ngneat/spectator": "^18.0.1",
"@types/jest": "^29.5.12",
"@types/node": "^20.12.5",
"husky": "^8.0.3",
"jest": "^29.7.0",
"ng-mocks": "^14.13.0",
"ng-packagr": "^18.1.0",
"prettier": "^3.2.5",
"pretty-quick": "^4.0.0",
"typescript": "^5.4.4"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
}
}