-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
81 lines (81 loc) · 2.82 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
{
"name": "limble-tree",
"version": "0.0.0",
"engines": {
"node": "18.19.1",
"npm": "10.2.4"
},
"type": "module",
"scripts": {
"build": "ng build limble-tree",
"check": "npm run lint:check && npm run format:check && npm run test",
"dev:limble-tree": "rm -rf dist/limble-tree && npx ng build limble-tree --watch",
"dev:sandbox": "rm -rf dist/sandbox && npx ng serve sandbox --open",
"format": "prettier ./ --write",
"format:check": "prettier ./ --check",
"lint": "eslint . --cache --cache-location eslint/.eslintcache --fix",
"lint:check": "eslint . --cache --cache-location eslint/.eslintcache --max-warnings=0",
"ng": "ng",
"publishPackage": "npm run check && rm -rf dist/limble-tree && npm run build && cd dist/limble-tree && npm publish",
"start": "ng serve",
"test": "ng build limble-tree && ng test --no-watch --no-progress",
"test:limble-tree": "ng test limble-tree --code-coverage",
"test:sandbox": "ng build limble-tree && ng test sandbox"
},
"private": true,
"dependencies": {
"@angular/animations": "18.1.0",
"@angular/cdk": "18.1.1",
"@angular/common": "18.1.0",
"@angular/compiler": "18.1.0",
"@angular/core": "18.1.0",
"@angular/forms": "18.1.0",
"@angular/material": "18.1.1",
"@angular/platform-browser": "18.1.0",
"@angular/platform-browser-dynamic": "18.1.0",
"@angular/router": "18.1.0",
"rxjs": "7.8.0",
"tslib": "2.5.0",
"zone.js": "0.14.4"
},
"devDependencies": {
"@angular-devkit/build-angular": "18.1.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/cli": "18.1.0",
"@angular/compiler-cli": "18.1.0",
"@types/jasmine": "4.0.0",
"eslint": "8.57.0",
"eslint-import-resolver-typescript": "3.6.1",
"eslint-plugin-eslint-comments": "3.2.0",
"eslint-plugin-import": "2.29.1",
"eslint-watch": "8.0.0",
"jasmine-core": "4.3.0",
"karma": "6.4.0",
"karma-chrome-launcher": "3.1.0",
"karma-coverage": "2.2.0",
"karma-jasmine": "5.1.0",
"karma-jasmine-html-reporter": "2.0.0",
"ng-packagr": "18.1.0",
"prettier": "3.3.3",
"typescript": "5.4.2",
"typescript-eslint": "7.14.1"
},
"prettier": {
"printWidth": 80,
"tabWidth": 3,
"useTabs": false,
"semi": true,
"singleQuote": false,
"quoteProps": "consistent",
"trailingComma": "none",
"bracketSpacing": true,
"arrowParens": "always",
"proseWrap": "preserve",
"htmlWhitespaceSensitivity": "css",
"endOfLine": "lf"
}
}