forked from TEAMMATES/teammates
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 3.6 KB
/
package.json
File metadata and controls
84 lines (84 loc) · 3.6 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
81
82
83
84
{
"scripts": {
"ng": "ng",
"start": "ng serve",
"build": "ng build --configuration production",
"build:stats": "ng build --configuration production --stats-json",
"test": "ng test --watch",
"coverage": "rimraf coverage && ng test --coverage",
"lint:ts": "ng lint --cache --eslint-config static-analysis/teammates-eslint.yml",
"lint:css:syntax": "stylelint \"src/web/**/*.css\" \"src/web/**/*.scss\" \"src/web/**/*.html\" --ignore-pattern \"src/web/dist/**/*.css\" --cache --config static-analysis/teammates-stylelint.yml",
"lint:css:styles": "prettier --print-width=120 --single-quote=true \"src/web/**/*.css\" \"src/web/**/*.scss\"",
"lint:windows:spaces": "lintspaces -n -t -d spaces -l 1 -. \"src/main/**/*.html\" \"src/web/**/*.html\" \"src/**/*.xml\" \"src/**/*.json\" \"src/**/*.properties\" \"*.yml\" \"*.json\" \"*.gradle\" \"static-analysis/*.*ml\" \".gitattributes\"",
"lint:nix:spaces": "lintspaces -n -t -d spaces -l 1 --matchdotfiles $(git diff --name-only --diff-filter=ACMRTUXB origin/master HEAD | grep -E \"src/(main|web)/.*.html|src/.*.(xml|json|properties)|*.(yml|json|gradle)|static-analysis/*.*ml|.gitattributes\") || :",
"lint": "run-script-os",
"lint:windows": "npm-run-all lint:ts lint:css:syntax lint:css:styles lint:windows:spaces -c",
"lint:nix": "npm-run-all lint:ts lint:css:syntax lint:css:styles lint:nix:spaces -c"
},
"private": true,
"dependencies": {
"@angular/animations": "^20.3.16",
"@angular/cdk": "^20.2.14",
"@angular/common": "^20.3.16",
"@angular/compiler": "^20.3.16",
"@angular/core": "^20.3.16",
"@angular/fire": "^20.0.1",
"@angular/forms": "^20.3.16",
"@angular/localize": "^20.3.16",
"@angular/platform-browser": "^20.3.16",
"@angular/platform-browser-dynamic": "^20.3.16",
"@angular/pwa": "^20.3.15",
"@angular/router": "^20.3.16",
"@angular/service-worker": "^20.3.16",
"@handsontable/angular-wrapper": "^17.0.0",
"@ng-bootstrap/ng-bootstrap": "^19.0.1",
"@popperjs/core": "^2.11.8",
"@tinymce/tinymce-angular": "^8.0.1",
"d3": "^7.8.5",
"firebase": "^10.7.2",
"handsontable": "^17.0.0",
"moment-timezone": "^0.6.0",
"ng-dynamic-component": "^10.8.2",
"ng-in-viewport": "^16.1.0",
"ngx-captcha": "^14.0.0",
"ngx-page-scroll-core": "^15.0.1",
"rxjs": "~7.8.2",
"tslib": "^2.8.1",
"ua-parser-js": "^1.0.41",
"zone.js": "~0.15.1"
},
"devDependencies": {
"@angular-builders/jest": "^20.0.0",
"@angular-eslint/builder": "^20.7.0",
"@angular-eslint/eslint-plugin": "^20.7.0",
"@angular-eslint/eslint-plugin-template": "^20.7.0",
"@angular-eslint/schematics": "^20.7.0",
"@angular-eslint/template-parser": "^20.7.0",
"@angular/build": "^20.3.15",
"@angular/cli": "^20.3.15",
"@angular/compiler-cli": "^20.3.16",
"@types/d3": "^7.4.3",
"@types/jest": "^29.5.14",
"@types/ua-parser-js": "^0.7.39",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"eslint": "^8.57.1",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^17.1.0",
"eslint-plugin-deprecation": "^2.0.0",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-jest": "^27.9.0",
"eslint-plugin-jsdoc": "^48.11.0",
"eslint-plugin-rxjs": "^5.0.3",
"jest": "^29.7.0",
"lintspaces-cli": "^0.7.1",
"npm-run-all": "^4.1.5",
"postcss-html": "^1.6.0",
"prettier": "^3.2.4",
"rimraf": "^5.0.10",
"run-script-os": "^1.1.6",
"stylelint": "^16.26.1",
"stylelint-config-standard-scss": "^13.1.0",
"typescript": "~5.8.3"
}
}