This repository was archived by the owner on Jul 22, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
76 lines (76 loc) · 2.48 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
{
"name": "ca-br2",
"version": "0.0.0",
"scripts": {
"ng": "ng",
"start": "ng serve",
"start:web": "ng serve --configuration web",
"build": "ng build",
"test": "ng test",
"lint": "ng lint",
"e2e": "ng e2e",
"tauri": "tauri",
"tauri:dev": "tauri dev",
"build:web": "ng build --configuration webProd",
"build:release": "ng build --configuration production && tauri build",
"build:server": "cd src-tauri && cargo build --features webserver --release",
"wasm_lib:debug": "cd src-wasm && wasm-pack build --out-dir ../cabr2_wasm --dev -- --features debug_build",
"wasm_lib:release": "cd src-wasm && wasm-pack build --out-dir ../cabr2_wasm --release"
},
"private": true,
"dependencies": {
"@angular/animations": "~12.0.0",
"@angular/cdk": "^12.0.0",
"@angular/common": "~12.0.0",
"@angular/compiler": "~12.0.0",
"@angular/core": "~12.0.0",
"@angular/forms": "~12.0.0",
"@angular/material": "^12.0.0",
"@angular/platform-browser": "~12.0.0",
"@angular/platform-browser-dynamic": "~12.0.0",
"@angular/router": "~12.0.0",
"@ngneat/transloco": "2.23.2",
"@tauri-apps/api": "^1.0.0-beta.8",
"lodash.merge": "^4.6.2",
"rxjs": "~6.6.7",
"tslib": "^2.3.1",
"zone.js": "~0.11.4"
},
"browserslist": [
"defaults",
"not IE 11"
],
"devDependencies": {
"@angular-devkit/build-angular": "~12.2.6",
"@angular-eslint/builder": "12.4.1",
"@angular-eslint/eslint-plugin": "12.4.1",
"@angular-eslint/eslint-plugin-template": "12.4.1",
"@angular-eslint/schematics": "12.4.1",
"@angular-eslint/template-parser": "12.4.1",
"@angular/cli": "~12.2.6",
"@angular/compiler-cli": "~12.0.0",
"@tauri-apps/cli": "^1.0.0-beta.10",
"@types/jasmine": "~3.9.1",
"@types/lodash.merge": "^4.6.6",
"@types/node": "^16.9.2",
"@typescript-eslint/eslint-plugin": "4.31.1",
"@typescript-eslint/parser": "4.31.1",
"eslint": "^7.32.0",
"eslint-plugin-import": "2.24.2",
"eslint-plugin-jsdoc": "36.1.0",
"eslint-plugin-prefer-arrow": "1.2.3",
"jasmine-core": "~3.9.0",
"jasmine-spec-reporter": "~7.0.0",
"karma": "~6.3.4",
"karma-chrome-launcher": "~3.1.0",
"karma-coverage": "~2.0.3",
"karma-jasmine": "~4.0.0",
"karma-jasmine-html-reporter": "^1.7.0",
"prettier": "^2.4.1",
"prettier-eslint": "^13.0.0",
"protractor": "~7.0.0",
"ts-node": "~10.2.1",
"typescript": "~4.2.4",
"webpack-bundle-analyzer": "^4.4.1"
}
}