forked from num-codex/codex-feasibility-gui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
85 lines (85 loc) · 2.66 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
{
"name": "num-portal-webapp",
"version": "0.0.13",
"scripts": {
"ng": "ng",
"start": "ng serve",
"build": "node --max_old_space_size=6144 ./node_modules/.bin/ng build",
"test": "jest",
"test-ci": "JEST_JUNIT_OUTPUT_DIR=./reports/junit/ node --expose-gc ./node_modules/.bin/jest --ci -w=1 --reporters=default --reporters=jest-junit",
"lint": "ng lint",
"lint:fix": "ng lint --fix",
"pretty-quick": "pretty-quick --pattern \"src/**/*.{scss,html}\"",
"e2e": "ng e2e",
"playground": "angular-playground"
},
"private": true,
"dependencies": {
"@angular/animations": "~10.1.4",
"@angular/cdk": "^10.2.3",
"@angular/common": "~10.1.4",
"@angular/compiler": "~10.1.4",
"@angular/core": "~10.1.4",
"@angular/flex-layout": "^10.0.0-beta.32",
"@angular/forms": "~10.1.4",
"@angular/material": "^10.2.3",
"@angular/material-moment-adapter": "^11.2.2",
"@angular/platform-browser": "~10.1.4",
"@angular/platform-browser-dynamic": "~10.1.4",
"@angular/router": "~10.1.4",
"@fortawesome/angular-fontawesome": "^0.7.0",
"@fortawesome/fontawesome-svg-core": "^1.2.28",
"@fortawesome/free-regular-svg-icons": "^5.13.0",
"@fortawesome/free-solid-svg-icons": "^5.13.0",
"@ngx-translate/core": "^13.0.0",
"@ngx-translate/http-loader": "^6.0.0",
"angular-moment": "^1.3.0",
"angular-oauth2-oidc": "^10.0.3",
"lodash-es": "^4.17.15",
"moment": "^2.29.1",
"monaco-editor": "^0.21.2",
"ng-lint-staged": "^0.1.6",
"ngx-webstorage-service": "^4.1.0",
"rxjs": "~6.6.0",
"tslib": "^2.0.0",
"zone.js": "~0.10.2"
},
"devDependencies": {
"@angular-devkit/build-angular": "^0.1002.0",
"@angular/cli": "~10.1.4",
"@angular/compiler-cli": "~10.1.4",
"@types/jest": "^26.0.14",
"@types/lodash-es": "^4.17.3",
"@types/node": "^12.11.1",
"angular-playground": "^7.1.1",
"codelyzer": "^6.0.0",
"husky": "^4.3.0",
"jasmine-core": "~3.6.0",
"jasmine-marbles": "^0.6.0",
"jasmine-spec-reporter": "~5.0.0",
"jest": "^26.5.3",
"jest-junit": "^12.0.0",
"jest-preset-angular": "^8.3.1",
"lint-staged": "^10.5.0",
"lodash": "^4.17.21",
"prettier": "^2.1.2",
"pretty-quick": "^3.1.0",
"protractor": "~7.0.0",
"ts-jest": "^26.4.1",
"ts-node": "~8.3.0",
"tslint": "~6.1.0",
"tslint-config-prettier": "^1.18.0",
"tslint-plugin-prettier": "^2.3.0",
"typescript": "~4.0.2"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged --pattern 'src/**/*.{scss,html,ts}' && lint-staged"
}
},
"lint-staged": {
"src/**/*.{ts}": [
"ng-lint-staged lint --fix --"
]
}
}