-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 2.65 KB
/
Copy pathpackage.json
File metadata and controls
70 lines (70 loc) · 2.65 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
{
"name": "artisans",
"private": true,
"license": "MIT",
"scripts": {
"ng": "ng",
"postinstall": "playwright install chromium",
"client-config": "`which php8.4 || which php` ./bin/generate-client-configuration.php",
"prerequisite": "mkdir -p htdocs/ && cp -v server/index.php htdocs/ && pnpm client-config && pnpm codegen",
"dev": "pnpm prerequisite && ng serve",
"prod": "pnpm prerequisite && ng build && find data/tmp/build/browser -type f -not -name '*.gz' -exec gzip --keep --best {} \\; && rm -rf htdocs/ && mv -v data/tmp/build/browser htdocs",
"test": "pnpm prerequisite && ng test",
"lint": "ng lint --max-warnings 0",
"e2e": "playwright test",
"codegen": "./bin/dump-schema && graphql-codegen --config codegen.ts"
},
"packageManager": "pnpm@11.2.1",
"dependencies": {
"@angular/cdk": "^22.1.1",
"@angular/common": "^22.1.1",
"@angular/compiler": "^22.1.1",
"@angular/core": "^22.1.1",
"@angular/forms": "^22.1.1",
"@angular/localize": "^22.1.1",
"@angular/material": "^22.1.1",
"@angular/platform-browser": "^22.1.1",
"@angular/router": "^22.1.1",
"@apollo/client": "^4.2.7",
"@ecodev/fab-speed-dial": "^22.0.0",
"@ecodev/natural": "73.0.1",
"@ecodev/natural-editor": "73.0.1",
"@ecodev/natural-layout": "^2.0.2",
"@graphql-codegen/cli": "^7.2.0",
"@graphql-codegen/typescript-operations": "^6.1.5",
"@graphql-tools/mock": "^9.0.25",
"apollo-angular": "^14.2.0",
"big.js": "^7.0.1",
"es-toolkit": "^1.39.10",
"graphql": "^16.14.2",
"ngx-progressbar": "^14.0.0",
"rxjs": "~7.8.2",
"striptags": "^4.0.0-alpha.4",
"tslib": "^2.8.1",
"type-fest": "^5.3.1",
"zone.js": "~0.16.2"
},
"devDependencies": {
"@angular/build": "^22.1.3",
"@angular/cli": "^22.1.3",
"@angular/compiler-cli": "^22.1.1",
"@eslint/js": "^10.0.1",
"@playwright/test": "^1.60.0",
"@types/big.js": "^7.0.0",
"@types/jasmine": "~5.1.9",
"@types/node": "^22.14.1",
"angular-eslint": "^22.1.0",
"eslint": "^10.8.1",
"istanbul-lib-instrument": "^6.0.3",
"jasmine-core": "~5.10.0",
"karma": "~6.4.4",
"karma-chrome-launcher": "~3.2.0",
"karma-jasmine": "~5.1.0",
"karma-jasmine-html-reporter": "^2.1.0",
"postcss": "^8.5.6",
"prettier": "3.9.6",
"prettier-plugin-css-order": "^2.1.2",
"typescript": "~6.0.3",
"typescript-eslint": "^8.29.1"
}
}