-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.86 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 2.86 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
78
79
80
{
"name": "@angular-experts/resource",
"version": "0.1.2",
"scripts": {
"ng": "ng",
"prestart": "npm run build:copy-changelog",
"start": "ng serve -o --hmr=false --port 4400",
"prebuild": "npm run build:copy-changelog",
"build": "ng build resource && ng build showcase",
"build:copy-assets": "cpx README.md dist/resource",
"build:copy-changelog": "cpx CHANGELOG.md projects/showcase/public/assets",
"watch": "ng build --watch --configuration development",
"lint": "ng lint",
"test": "npm run test:lib && npm run test:showcase",
"test:lib": "node --experimental-vm-modules --no-warnings node_modules/jest/bin/jest.js --config projects/resource/jest.config.ts",
"test:showcase": "node --experimental-vm-modules --no-warnings node_modules/jest/bin/jest.js --config projects/showcase/jest.config.ts",
"format:test": "prettier --list-different \"./projects/**/*.{ts,html,scss,json}\"",
"format:write": "prettier --write \"./projects/**/*.{ts,html,scss,json}\"",
"release": "standard-version -a && npm run build:copy-changelog && git add . && git commit -m \"chore: changelog\" && git push --follow-tags origin main"
},
"standard-version": {
"scripts": {
"precommit": "node sync-versions.js && git add ."
}
},
"private": "false",
"dependencies": {
"@angular/animations": "^20.0.3",
"@angular/cdk": "^20.0.3",
"@angular/common": "^20.0.3",
"@angular/compiler": "^20.0.3",
"@angular/core": "^20.0.3",
"@angular/forms": "^20.0.3",
"@angular/material": "^20.0.3",
"@angular/platform-browser": "^20.0.3",
"@angular/platform-browser-dynamic": "^20.0.3",
"@angular/router": "^20.0.3",
"@tailwindcss/postcss": "^4.1.5",
"install": "^0.13.0",
"npm": "^11.3.0",
"postcss": "^8.5.3",
"rxjs": "~7.8.0",
"tailwindcss": "^4.1.5",
"tslib": "^2.3.0",
"zone.js": "~0.15.0"
},
"devDependencies": {
"@angular/build": "^20.0.2",
"@angular/cli": "^20.0.2",
"@angular/compiler-cli": "^20.0.3",
"@jest/globals": "^29.7.0",
"@types/jasmine": "~5.1.0",
"@types/jest": "^29.5.14",
"angular-eslint": "20.0.0",
"cpx": "^1.5.0",
"eslint": "^9.28.0",
"jasmine-core": "~5.6.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jest-preset-angular": "^14.6.0",
"ng-packagr": "^20.0.0",
"postcss": "^8.5.3",
"prettier": "^3.5.3",
"prettier-plugin-tailwindcss": "^0.6.11",
"standard-version": "^9.5.0",
"ts-node": "^10.9.2",
"typescript": "~5.8.3",
"typescript-eslint": "^8.33.1"
},
"license": "MIT",
"author": "Tomas Trajan <@tomastrajan>",
"homepage": "https://github.com/angular-experts-io/resource#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/angular-experts-io/resource.git"
},
"bugs": {
"url": "https://github.com/angular-experts-io/resource/issues"
}
}