-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
96 lines (96 loc) · 3.32 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
89
90
91
92
93
94
95
96
{
"name": "grange",
"version": "0.0.0",
"scripts": {
"ng": "ng",
"start": "ng serve demo",
"build:demo": "ng build --prod demo",
"build": "ng build --prod grange && cp ./README.md ./dist/grange",
"test": "jest",
"lint": "ng lint",
"test:watch": "jest --watch",
"guillotina": "docker-compose -f g-api/docker-compose.yaml up",
"get_version": "cat ./projects/grange/package.json | grep version | head -1 | awk -F: '{ print $2 }' | sed 's/[\",]//g' | tr -d '[[:space:]]'"
},
"private": true,
"dependencies": {
"@angular/animations": "~11.1.0",
"@angular/cdk": "~11.1.0",
"@angular/common": "~11.1.0",
"@angular/compiler": "~11.1.0",
"@angular/core": "~11.1.0",
"@angular/forms": "~11.1.0",
"@angular/platform-browser": "~11.1.0",
"@angular/platform-browser-dynamic": "~11.1.0",
"@briebug/jest-schematic": "^2.1.0",
"@guillotinaweb/grange-core": "latest",
"@guillotinaweb/grange-form": "latest",
"@guillotinaweb/ngx-state-traverser": "latest",
"@guillotinaweb/pastanaga-angular": "^1.19.0",
"@ngrx/core": "^1.2.0",
"@ngrx/effects": "^9.2.0",
"@ngrx/store": "^9.2.0",
"@ngrx/store-devtools": "^9.2.0",
"angular-svg-icon": "^9.2.0",
"angular-traversal": "latest",
"date-fns": "^2.16.1",
"jexl": "^2.2.2",
"ngx-schema-form": "latest",
"rxjs": "~6.5.4",
"tslib": "^2.0.0",
"z-schema": "^4.2.1",
"zone.js": "~0.10.3"
},
"devDependencies": {
"@angular-devkit/build-angular": "~0.1101.0",
"@angular-devkit/build-ng-packagr": "~0.1000.4",
"@angular/cli": "~11.1.0",
"@angular/compiler-cli": "~11.1.0",
"@angular/language-service": "~11.1.0",
"@ngrx/store-devtools": "^8.4.0",
"@types/jasmine": "~3.3.8",
"@types/jasminewd2": "~2.0.3",
"@types/jest": "24.0.19",
"@types/node": "^12.11.1",
"codelyzer": "^5.1.2",
"jasmine-core": "~3.4.0",
"jasmine-spec-reporter": "~4.2.1",
"jest": "24.9.0",
"jest-preset-angular": "7.1.1",
"mrs-developer": "^1.1.3",
"ng-packagr": "^11.1.2",
"protractor": "~7.0.0",
"ts-node": "~7.0.0",
"tslint": "~6.1.3",
"typescript": "~4.1.3"
},
"jest": {
"preset": "jest-preset-angular",
"roots": [
"src"
],
"transform": {
"^.+\\.(ts|js|html)$": "ts-jest"
},
"setupFilesAfterEnv": [
"<rootDir>/src/setup-jest.ts"
],
"moduleNameMapper": {
"@app/(.*)": "<rootDir>/src/app/$1",
"@assets/(.*)": "<rootDir>/src/assets/$1",
"@core/(.*)": "<rootDir>/src/app/core/$1",
"@env": "<rootDir>/src/environments/environment",
"@src/(.*)": "<rootDir>/src/src/$1",
"@state/(.*)": "<rootDir>/src/app/state/$1"
},
"globals": {
"ts-jest": {
"tsConfig": "<rootDir>/tsconfig.spec.json",
"stringifyContentPathRegex": "\\.html$",
"astTransformers": [
"jest-preset-angular/InlineHtmlStripStylesTransformer.js"
]
}
}
}
}