forked from TEAMMATES/teammates
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
81 lines (81 loc) · 3.37 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
{
"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": "~13.3.12",
"@angular/cdk": "~13.3.9",
"@angular/common": "~13.3.12",
"@angular/compiler": "~13.3.12",
"@angular/core": "~13.3.12",
"@angular/forms": "~13.3.12",
"@angular/localize": "~13.3.12",
"@angular/platform-browser": "~13.3.12",
"@angular/platform-browser-dynamic": "~13.3.12",
"@angular/pwa": "~13.3.10",
"@angular/router": "~13.3.12",
"@angular/service-worker": "~13.3.12",
"@handsontable/angular": "^12.3.0",
"@ng-bootstrap/ng-bootstrap": "^11.0.1",
"@tinymce/tinymce-angular": "^6.0.1",
"d3": "^7.8.2",
"file-saver": "^2.0.5",
"handsontable": "^12.3.0",
"intersection-observer": "^0.12.2",
"moment-timezone": "^0.5.40",
"ng-dynamic-component": "~10.1.0",
"ng-in-viewport": "^6.1.5",
"ngx-captcha": "^11.0.0",
"ngx-page-scroll-core": "^8.0.0",
"rxjs": "~7.5.7",
"tslib": "^2.4.1",
"ua-parser-js": "^0.7.32",
"zone.js": "~0.11.8"
},
"devDependencies": {
"@angular-builders/jest": "^13.0.4",
"@angular-devkit/build-angular": "~13.3.10",
"@angular-eslint/builder": "~13.2.1",
"@angular-eslint/eslint-plugin": "~13.2.1",
"@angular-eslint/eslint-plugin-template": "~13.2.1",
"@angular-eslint/schematics": "~13.2.1",
"@angular-eslint/template-parser": "~13.2.1",
"@angular/cli": "~13.3.10",
"@angular/compiler-cli": "~13.3.12",
"@types/d3": "^7.4.0",
"@types/jest": "^27.5.2",
"@typescript-eslint/eslint-plugin": "^5.47.0",
"@typescript-eslint/parser": "^5.47.0",
"eslint": "^8.30.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.1.7",
"eslint-plugin-jsdoc": "^39.6.4",
"eslint-plugin-rxjs": "^5.0.2",
"jest": "^27.5.1",
"lintspaces-cli": "^0.7.1",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.20",
"rimraf": "^3.0.2",
"run-script-os": "^1.1.6",
"stylelint": "^13.13.1",
"stylelint-config-standard": "^22.0.0",
"typescript": "~4.6.4",
"webpack-bundle-analyzer": "^4.7.0"
}
}