forked from TEAMMATES/teammates
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
84 lines (84 loc) · 3.46 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
{
"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": "stylelint \"src/web/**/*.css\" \"src/web/**/*.scss\" \"src/web/**/*.html\" --ignore-pattern \"src/web/dist/*.css\" --cache --config static-analysis/teammates-stylelint.yml",
"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 lint:windows:spaces -c",
"lint:nix": "npm-run-all lint:ts lint:css lint:nix:spaces -c"
},
"private": true,
"dependencies": {
"@angular/animations": "^14.2.12",
"@angular/cdk": "^14.2.7",
"@angular/common": "^14.2.12",
"@angular/compiler": "^14.2.12",
"@angular/core": "^14.2.12",
"@angular/fire": "^7.5.0",
"@angular/forms": "^14.2.12",
"@angular/localize": "^14.2.12",
"@angular/platform-browser": "^14.2.12",
"@angular/platform-browser-dynamic": "^14.2.12",
"@angular/pwa": "^14.2.10",
"@angular/router": "^14.2.12",
"@angular/service-worker": "^14.2.12",
"@handsontable/angular": "^12.3.1",
"@ng-bootstrap/ng-bootstrap": "^13.1.1",
"@popperjs/core": "~2.10.2",
"@tinymce/tinymce-angular": "^7.0.0",
"d3": "^7.8.2",
"file-saver": "^2.0.5",
"firebase": "^9.17.2",
"handsontable": "^12.3.1",
"intersection-observer": "^0.12.2",
"moment-timezone": "^0.5.40",
"ng-dynamic-component": "^10.6.1",
"ng-in-viewport": "^6.1.5",
"ngx-captcha": "^12.0.2",
"ngx-page-scroll-core": "^9.0.0",
"rxjs": "~7.5.7",
"tslib": "^2.5.0",
"ua-parser-js": "^0.7.33",
"zone.js": "~0.11.8"
},
"devDependencies": {
"@angular-builders/jest": "^14.1.0",
"@angular-devkit/build-angular": "^14.2.10",
"@angular-eslint/builder": "^14.4.0",
"@angular-eslint/eslint-plugin": "^14.4.0",
"@angular-eslint/eslint-plugin-template": "^14.4.0",
"@angular-eslint/schematics": "^14.4.0",
"@angular-eslint/template-parser": "^14.4.0",
"@angular/cli": "^14.2.10",
"@angular/compiler-cli": "^14.2.12",
"@types/d3": "^7.4.0",
"@types/jest": "^28.1.8",
"@typescript-eslint/eslint-plugin": "^5.52.0",
"@typescript-eslint/parser": "^5.52.0",
"eslint": "^8.34.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-plugin-deprecation": "^1.3.3",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^27.2.1",
"eslint-plugin-jsdoc": "^40.0.0",
"eslint-plugin-rxjs": "^5.0.2",
"jest": "^28.1.3",
"lintspaces-cli": "^0.7.1",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.21",
"rimraf": "^4.1.2",
"run-script-os": "^1.1.6",
"stylelint": "^13.13.1",
"stylelint-config-standard": "^22.0.0",
"typescript": "~4.7.4",
"webpack-bundle-analyzer": "^4.8.0"
}
}