forked from TEAMMATES/teammates
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
83 lines (83 loc) · 3.45 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
{
"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": "~12.2.16",
"@angular/cdk": "~12.2.13",
"@angular/common": "~12.2.16",
"@angular/compiler": "~12.2.16",
"@angular/core": "~12.2.16",
"@angular/forms": "~12.2.16",
"@angular/localize": "~12.2.16",
"@angular/platform-browser": "~12.2.16",
"@angular/platform-browser-dynamic": "~12.2.16",
"@angular/pwa": "~12.2.16",
"@angular/router": "~12.2.16",
"@angular/service-worker": "~12.2.16",
"@handsontable/angular": "^5.1.1",
"@ng-bootstrap/ng-bootstrap": "^10.0.0",
"@tinymce/tinymce-angular": "^4.2.4",
"classlist.js": "^1.1.20150312",
"d3": "^5.16.0",
"file-saver": "^2.0.5",
"handsontable": "^7.4.2",
"intersection-observer": "^0.12.0",
"moment-timezone": "^0.5.34",
"ng-dynamic-component": "^9.0.0",
"ng-in-viewport": "^6.1.5",
"ngx-captcha": "^10.0.0",
"ngx-image-cropper": "^1.5.1",
"ngx-page-scroll-core": "^7.0.6",
"rxjs": "~6.6.7",
"tslib": "^2.3.1",
"ua-parser-js": "^0.7.31",
"zone.js": "~0.11.4"
},
"devDependencies": {
"@angular-builders/jest": "^12.1.2",
"@angular-devkit/build-angular": "~12.2.16",
"@angular-eslint/builder": "~12.7.0",
"@angular-eslint/eslint-plugin": "~12.7.0",
"@angular-eslint/eslint-plugin-template": "~12.7.0",
"@angular-eslint/schematics": "~12.7.0",
"@angular-eslint/template-parser": "~12.7.0",
"@angular/cli": "~12.2.16",
"@angular/compiler-cli": "~12.2.16",
"@types/jest": "^27.4.1",
"@types/node": "^12.11.1",
"@typescript-eslint/eslint-plugin": "^5.12.1",
"@typescript-eslint/parser": "^5.12.1",
"eslint": "^7.32.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^16.1.0",
"eslint-plugin-deprecation": "^1.3.2",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jest": "^26.1.1",
"eslint-plugin-jsdoc": "^37.9.4",
"eslint-plugin-rxjs": "^3.3.7",
"jest": "^27.4.7",
"lintspaces-cli": "^0.7.1",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.7",
"rimraf": "^3.0.2",
"run-script-os": "^1.1.6",
"stylelint": "^13.13.1",
"stylelint-config-standard": "^22.0.0",
"typescript": "~4.3.5",
"webpack-bundle-analyzer": "^4.5.0"
}
}