-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 2.28 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
{
"name": "reticle-generator",
"version": "0.0.5",
"scripts": {
"postversion": "jq -r '.[\"version\"]' package.json > src/assets/version && git add . && git commit -m \"release: v`cat src/assets/version`\" && git tag -f v`cat src/assets/version`",
"ng": "ng",
"start": "ng serve",
"build": "ng build",
"build:prod": "ng build --configuration production",
"watch": "ng build --watch --configuration development",
"dev": "npm start",
"devcheck": "npm test --watch-all=false --coverage false && npm run lint && npm run stylelint",
"test": "ng test --",
"test:watch": "ng test --watch --coverage false --",
"lint": "ng lint",
"stylelint": "stylelint \"**/*.{css,scss}\"",
"clean:coverage": "rimraf coverage",
"clean:dist": "rimraf dist",
"clean": "npm run clean:coverage && npm run clean:dist",
"prepare": "husky"
},
"pre-commit": [
"devcheck"
],
"private": true,
"dependencies": {
"@angular/animations": "^18.1.0",
"@angular/cdk": "^18.1.0",
"@angular/common": "^18.1.0",
"@angular/compiler": "^18.1.0",
"@angular/core": "^18.1.0",
"@angular/forms": "^18.1.0",
"@angular/material": "^18.1.0",
"@angular/platform-browser": "^18.1.0",
"@angular/platform-browser-dynamic": "^18.1.0",
"@angular/router": "^18.1.0",
"rxjs": "~7.8.1",
"tslib": "^2.6.3",
"zone.js": "~0.14.7"
},
"devDependencies": {
"@angular-builders/jest": "^18.0.0",
"@angular-eslint/builder": "18.1.0",
"@angular-eslint/eslint-plugin": "18.1.0",
"@angular-eslint/eslint-plugin-template": "18.1.0",
"@angular-eslint/schematics": "18.1.0",
"@angular-eslint/template-parser": "18.1.0",
"@angular/build": "^18.1.0",
"@angular/cli": "^18.1.0",
"@angular/compiler-cli": "^18.1.0",
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"@types/jest": "^29.5.12",
"@typescript-eslint/eslint-plugin": "7.16.0",
"@typescript-eslint/parser": "7.16.0",
"eslint": "^8.57.0",
"husky": "^9.0.11",
"jasmine-core": "~5.1.2",
"jest": "^29.7.0",
"pre-commit": "^1.2.2",
"stylelint": "^16.6.1",
"stylelint-config-standard": "^36.0.1",
"stylelint-config-standard-scss": "^13.1.0",
"stylelint-scss": "^6.4.1",
"typescript": "~5.5.3"
}
}