-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
126 lines (126 loc) · 4.67 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
{
"name": "protoarch",
"version": "0.0.0-development",
"license": "MIT",
"scripts": {
"test": "npm exec -- nx run-many -t test --passWithNoTests",
"lint": "npm exec -- stylelint \"**/*.less\" && npm exec -- eslint --config ./.eslintrc.js --debug \"**/*.{js,ts,html}\"",
"lint:fix": "npm exec -- stylelint --fix \"**/*.less\" && npm exec -- eslint --config ./.eslintrc.js --fix --debug \"**/*.{js,ts,html}\"",
"lint:scss": "npm exec -- stylelint \"**/*.less\"",
"lint:scss:fix": "npm exec -- stylelint --fix \"**/*.less\"",
"e2e": "npm exec -- ng e2e",
"affected:apps": "nx affected:apps",
"affected:libs": "nx affected:libs",
"affected:build": "nx affected:build",
"affected:e2e": "nx affected:e2e",
"affected:test": "nx affected:test",
"affected:lint": "nx affected:lint",
"affected:dep-graph": "nx affected:dep-graph",
"affected": "nx affected",
"format": "nx format:write",
"format:write": "nx format:write",
"format:check": "nx format:check",
"update": "nx migrate latest",
"workspace-generator": "nx workspace-generator",
"dep-graph": "nx dep-graph",
"help": "nx help",
"release": "npm run test && npm exec -- rimraf dist && npm exec -- tsx ./tools/scripts/release/index.ts --dry-run=false"
},
"private": true,
"dependencies": {
"@angular/animations": "18.0.1",
"@angular/common": "18.0.1",
"@angular/compiler": "18.0.1",
"@angular/core": "18.0.1",
"@angular/forms": "18.0.1",
"@angular/platform-browser": "18.0.1",
"@angular/platform-browser-dynamic": "18.0.1",
"@angular/router": "18.0.1",
"@nx/angular": "19.1.1",
"rxjs": "~7.8.1",
"tslib": "^2.1.0",
"zone.js": "0.14.2"
},
"devDependencies": {
"@angular-devkit/build-angular": "~18.0.2",
"@angular-eslint/eslint-plugin": "18.0.1",
"@angular-eslint/eslint-plugin-template": "18.0.1",
"@angular-eslint/schematics": "18.0.1",
"@angular-eslint/template-parser": "18.0.1",
"@angular/cli": "~18.0.2",
"@angular/compiler-cli": "18.0.1",
"@angular/language-service": "18.0.1",
"@nrwl/cli": "~15.9.3",
"@nx/angular": "19.1.1",
"@nx/cypress": "19.1.1",
"@nrwl/eslint-plugin-nx": "19.1.1",
"@nx/jest": "19.1.1",
"@nrwl/jest": "19.1.1",
"@nx/linter": "19.1.1",
"@nx/js": "19.1.1",
"@nrwl/nx-cloud": "19.0.0",
"@nx/workspace": "19.1.1",
"@types/jest": "29.4.4",
"@types/node": "18.16.9",
"@types/yargs": "~17.0.33",
"@typescript-eslint/eslint-plugin": "~8.1.0",
"@typescript-eslint/parser": "~8.1.0",
"@auth0/angular-jwt": "~5.2.0",
"jsonwebtoken": "~8.5.1",
"@types/express": "~4.17.13",
"@types/jsonwebtoken": "~8.5.5",
"angular-i18next": "~18.0.0",
"conventional-changelog": "^3.1.24",
"conventional-changelog-cli": "^2.1.1",
"cpy-cli": "~5.0.0",
"dotenv": "10.0.0",
"execa": "~8.0.1",
"eslint": "~8.57.0",
"eslint-config-prettier": "~9.1.0",
"eslint-plugin-prettier": "~5.1.3",
"eslint-plugin-rxjs": "~5.0.3",
"eslint-plugin-simple-import-sort": "~12.1.0",
"eslint-plugin-cypress": "~3.5.0",
"husky": "^4.2.5",
"jest": "~29.7.0",
"jest-preset-angular": "14.1.0",
"lint-staged": "~15.2.0",
"log-symbols": "6.0.0",
"ng-packagr": "~18.1.0",
"ngx-cookie": "~6.0.1",
"nx": "19.1.1",
"postcss": "^8.3.9",
"postcss-import": "14.1.0",
"postcss-preset-env": "7.5.0",
"postcss-url": "10.1.3",
"postcss-scss": "~4.0.9",
"postcss-less": "~6.0.0",
"prettier": "~3.3.3",
"stylelint": "~15.8.0",
"stylelint-config-prettier": "~8.0.2",
"stylelint-config-standard": "~33.0.0",
"stylelint-order": "~6.0.4",
"stylelint-prettier": "^4.0.0",
"stylelint-scss": "~5.3.2",
"rimraf": "~5.0.5",
"ts-jest": "29.1.1",
"ts-node": "10.9.1",
"tsx": "~4.7.0",
"typescript": "5.4.5",
"yargs": "~17.7.2"
},
"repository": {
"type": "git",
"url": "https://github.com/protoarch/angular.git"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{less,css,scss}": ["npm exec -- stylelint --fix"],
"*.{md,json}": ["npm exec -- prettier --write"],
"**/!(jest.config)*.{js,ts}": ["npm exec -- eslint --fix"]
}
}