forked from TEAMMATES/teammates
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
88 lines (88 loc) · 3.74 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
{
"scripts": {
"ng": "ng",
"start": "ng serve",
"build": "ng build --configuration production",
"analyze": "webpack-bundle-analyzer src/web/dist/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": "^16.2.12",
"@angular/cdk": "^16.2.13",
"@angular/common": "^16.2.12",
"@angular/compiler": "^16.2.12",
"@angular/core": "^16.2.12",
"@angular/fire": "^16.0.0",
"@angular/forms": "^16.2.12",
"@angular/localize": "^16.2.12",
"@angular/platform-browser": "^16.2.12",
"@angular/platform-browser-dynamic": "^16.2.12",
"@angular/pwa": "^16.2.12",
"@angular/router": "^16.2.12",
"@angular/service-worker": "^16.2.12",
"@handsontable/angular": "^14.1.0",
"@ng-bootstrap/ng-bootstrap": "^15.1.2",
"@popperjs/core": "^2.11.8",
"@tinymce/tinymce-angular": "^7.0.0",
"d3": "^7.8.5",
"file-saver": "^2.0.5",
"firebase": "^10.7.2",
"handsontable": "^14.1.0",
"intersection-observer": "^0.12.2",
"moment-timezone": "^0.5.45",
"ng-dynamic-component": "^10.7.0",
"ng-in-viewport": "^16.1.0",
"ngx-captcha": "^13.0.0",
"ngx-page-scroll-core": "^11.0.0",
"rxjs": "~7.8.1",
"tslib": "^2.6.2",
"ua-parser-js": "^1.0.37",
"zone.js": "~0.13.3"
},
"devDependencies": {
"@angular-builders/jest": "^16.0.1",
"@angular-devkit/build-angular": "^16.2.12",
"@angular-eslint/builder": "^16.3.1",
"@angular-eslint/eslint-plugin": "^16.3.1",
"@angular-eslint/eslint-plugin-template": "^16.3.1",
"@angular-eslint/schematics": "^16.3.1",
"@angular-eslint/template-parser": "^16.3.1",
"@angular/cli": "^16.2.12",
"@angular/compiler-cli": "^16.2.12",
"@types/d3": "^7.4.3",
"@types/file-saver": "^2.0.7",
"@types/jest": "^29.5.11",
"@types/ua-parser-js": "^0.7.39",
"@typescript-eslint/eslint-plugin": "^6.19.1",
"@typescript-eslint/parser": "^6.19.1",
"eslint": "^8.56.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^17.1.0",
"eslint-plugin-deprecation": "^2.0.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jest": "^27.6.3",
"eslint-plugin-jsdoc": "^48.0.4",
"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.5",
"run-script-os": "^1.1.6",
"stylelint": "^16.2.0",
"stylelint-config-standard-scss": "^13.0.0",
"typescript": "~5.1.6",
"webpack-bundle-analyzer": "^4.10.1"
}
}