-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
54 lines (54 loc) · 1.42 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
{
"name": "cp2077-nativedb",
"version": "1.8.1",
"scripts": {
"ng": "ng",
"start": "ng serve",
"build": "ng build",
"postbuild": "gulp -f gulp.mjs deploy",
"prod": "npx http-server ./dist/browser/ --port 4400 --brotli -c-1",
"watch": "ng build --watch --configuration development",
"test": "jest"
},
"private": true,
"jest": {
"preset": "jest-preset-angular",
"setupFilesAfterEnv": [
"./tests/setup-jest.ts"
],
"coveragePathIgnorePatterns": [
"tests/"
]
},
"dependencies": {
"@angular/animations": "^18.2.12",
"@angular/cdk": "^18.2.13",
"@angular/common": "^18.2.12",
"@angular/compiler": "^18.2.12",
"@angular/core": "^18.2.12",
"@angular/forms": "^18.2.12",
"@angular/material": "^18.2.13",
"@angular/platform-browser": "^18.2.12",
"@angular/platform-browser-dynamic": "^18.2.12",
"@angular/router": "^18.2.12",
"@angular/service-worker": "^18.2.12",
"dexie": "^4.0.10",
"marked": "^15.0.0",
"rxjs": "~7.8.1",
"tslib": "^2.8.1",
"uuid": "^11.0.3",
"zone.js": "^0.14.10"
},
"devDependencies": {
"@angular/build": "^18.2.12",
"@angular/cli": "^18.2.12",
"@angular/compiler-cli": "^18.2.12",
"@types/jest": "^29.5.14",
"gulp": "^5.0.0",
"gulp-brotli": "^3.0.0",
"gulp-htmlmin": "^5.0.1",
"jest": "^29.7.0",
"jest-preset-angular": "^14.3.0",
"typescript": "^5.5.4"
}
}