-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
100 lines (100 loc) · 3.28 KB
/
package.json
File metadata and controls
100 lines (100 loc) · 3.28 KB
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
97
98
99
100
{
"name": "DII",
"version": "1.0.0",
"scripts": {
"ng": "ng",
"dev": "ng serve --port 4200 --hmr --host 0.0.0.0 --ssl true --ssl-cert ./../localhost/server.cert --ssl-key ./../localhost/server.key",
"start": "ng serve --configuration production --port 4200 --host 0.0.0.0 --disable-host-check",
"server": "npm run build && node server.js",
"build": "ng build --configuration production",
"watch": "ng build --watch --configuration development",
"test": "ng test",
"nm:rm": "rimraf node_modules",
"lint": "ng lint",
"deploy": "git push origin main:deploy-k8s",
"deploy-old": "git push origin main:deploy-production",
"activ-update": "rimraf node_modules/@ixily/activ-web && npm i @ixily/activ-web@latest --force"
},
"private": true,
"dependencies": {
"@3id/connect": "^0.4.1",
"@angular/animations": "^16.1.7",
"@angular/common": "^16.1.7",
"@angular/compiler": "^16.1.7",
"@angular/core": "^16.1.7",
"@angular/forms": "^16.1.7",
"@angular/platform-browser": "^16.1.7",
"@angular/platform-browser-dynamic": "^16.1.7",
"@angular/router": "^16.1.7",
"@ceramicnetwork/3id-did-resolver": "^2.1.7",
"@ceramicnetwork/http-client": "^2.3.4",
"@ceramicnetwork/stream-tile": "^2.4.3",
"@ixily/activ": "^4.10.21",
"@ixily/activ-web": "^4.10.19",
"@lit-protocol/lit-node-client": "^2.2.47",
"@lit-protocol/sdk-browser": "^1.3.4",
"@metamask/detect-provider": "^1.2.0",
"@tailwindcss/forms": "^0.5.4",
"@tailwindcss/typography": "^0.5.9",
"@types/node": "^20.12.12",
"crypto-js": "^4.1.1",
"dids": "^3.3.0",
"eth-sig-util": "^1.4.2",
"ethers": "^5.7.0",
"fetch-blob": "^4.0.0",
"flowbite": "^1.7.0",
"key-did-provider-ed25519": "^2.0.1",
"key-did-resolver": "^2.1.1",
"ngx-highlightjs": "^10.0.0",
"node-domexception": "^2.0.1",
"pako": "^2.1.0",
"public-ip": "^6.0.1",
"rxjs": "~7.5.0",
"tslib": "^2.3.0",
"url": "^0.11.1",
"warp-contracts": "^1.4.44",
"weavedb-sdk": "^0.42.2",
"weavedb-sdk-node": "^0.42.2",
"web": "^0.0.2",
"web3": "^4.1.0",
"zone.js": "^0.14.6"
},
"devDependencies": {
"@angular-builders/custom-webpack": "^16.0.0",
"@angular-devkit/build-angular": "^16.1.6",
"@angular-eslint/builder": "16.1.0",
"@angular-eslint/eslint-plugin": "16.1.0",
"@angular-eslint/eslint-plugin-template": "16.1.0",
"@angular-eslint/schematics": "16.1.0",
"@angular-eslint/template-parser": "16.1.0",
"@angular/cli": "~16.1.6",
"@angular/compiler-cli": "^16.1.7",
"@metamask/detect-provider": "^1.2.0",
"@types/crypto-js": "^4.1.1",
"@types/jasmine": "~4.3.0",
"@typescript-eslint/eslint-plugin": "5.62.0",
"@typescript-eslint/parser": "5.62.0",
"cors": "^2.8.5",
"dotenv-webpack": "^8.0.1",
"eslint": "^8.44.0",
"jasmine-core": "~4.5.0",
"karma": "~6.4.0",
"karma-chrome-launcher": "~3.1.0",
"karma-coverage": "~2.2.0",
"karma-jasmine": "~5.1.0",
"karma-jasmine-html-reporter": "~2.0.0",
"lit-js-sdk": "^1.1.250",
"tailwindcss": "^3.3.3",
"typescript": "~5.1.6"
},
"browser": {
"http": false,
"https": false,
"net": false,
"path": false,
"stream": false,
"tls": false,
"fs": false,
"os": false
}
}