forked from GeekGene/mewsfeed
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
83 lines (83 loc) · 3.39 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
{
"name": "clutter-dev",
"private": true,
"version": "0.9.0-alpha",
"workspaces": [
"ui",
"tests"
],
"scripts": {
"// 0": "DNA",
"test": "npm run build:happ && npm t -w tests",
"build:happ": "npm run build:dnas && hc app pack ./workdir",
"build:dnas": "npm run build:zomes && hc dna pack ./dnas/clutter/workdir",
"build:zomes": "CARGO_TARGET_DIR=target cargo build --release --target wasm32-unknown-unknown",
"playground": "run-singleton \"holochain-playground\"",
"// 1": "UI",
"web": "NX_HC_PORT=$HC_PORT NX_HC_ADMIN_PORT=$HC_ADMIN_PORT nx run clutter-web:serve",
"mobile": "NX_HC_PORT=$HC_PORT NX_HC_ADMIN_PORT=$HC_ADMIN_PORT nx run clutter-mobile:serve",
"start": "npm run build:happ && npm run start:agent",
"// 2": "OTHER",
"network": "npm run build:happ && concurrently-repeat \"npm run start:agent\"",
"start:agent": "cross-env HC_PORT=$(port) HC_ADMIN_PORT=$(port) concurrently \"npm run playground\" \"npm run start:happ\" \"npm run mobile\"",
"restart:agent": "cross-env HC_PORT=$(port) HC_ADMIN_PORT=$(port) concurrently \"npm run playground\" \"npm run restart:happ\" \"npm run mobile\"",
"start:happ": "hc s clean && echo pass | RUST_LOG=warn hc s --piped -f=$HC_ADMIN_PORT generate ./workdir/clutter.happ --run=$HC_PORT -a clutter network mdns",
"restart:happ": "echo pass | RUST_LOG=warn hc s --piped -f=$HC_ADMIN_PORT run -p=$HC_PORT",
"package": "npm run build:happ && npm run package:ui && hc web-app pack workdir",
"package:ui": "npm run build -w ui && cd ui/dist && bestzip ../dist.zip *",
"lint": "eslint --fix --ext .ts tests --ext .ts ui/src --ext .vue ui/src"
},
"dependencies": {
"@angular/animations": "~16.0.0-next.1",
"@angular/common": "~16.0.0-next.1",
"@angular/compiler": "~16.0.0-next.1",
"@angular/core": "~16.0.0-next.1",
"@angular/forms": "~16.0.0-next.1",
"@angular/platform-browser": "~16.0.0-next.1",
"@angular/platform-browser-dynamic": "~16.0.0-next.1",
"@angular/router": "~16.0.0-next.1",
"@holochain/client": "^0.12.3",
"@ionic/angular": "^6.3.8",
"angular-in-memory-web-api": "^0.14.0",
"moment": "^2.29.4",
"ngx-moment": "^6.0.2",
"rxjs": "~7.5.0",
"tslib": "^2.3.0",
"zone.js": "~0.11.4"
},
"devDependencies": {
"@angular-devkit/build-angular": "~16.0.0-next.1",
"@angular-eslint/eslint-plugin": "~14.0.4",
"@angular-eslint/eslint-plugin-template": "~14.0.4",
"@angular-eslint/template-parser": "~14.0.4",
"@angular/cli": "~16.0.0-next.1",
"@angular/compiler-cli": "~16.0.0-next.1",
"@angular/language-service": "~16.0.0-next.1",
"@holochain-playground/cli": "^0.1.0",
"@nrwl/angular": "^15.8.3",
"@nxtend/capacitor": "^13.0.0",
"@nxtend/ionic-angular": "^13.1.0",
"@types/node": "^18.15.0",
"@typescript-eslint/eslint-plugin": "^5.28.0",
"@typescript-eslint/parser": "^5.17.0",
"bestzip": "^2.2.0",
"concurrently": "^6.2.1",
"concurrently-repeat": "^0.0.1",
"cross-env": "^7.0.3",
"eslint": "^8.7.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-vue": "^8.4.0",
"new-port-cli": "^1.0.0",
"nx": "15.8.3",
"prettier": "^2.6.2",
"rimraf": "^3.0.2",
"run-singleton-cli": "^0.0.7",
"ts-jest": "^28.0.5",
"ts-node": "^10.9.1",
"typescript": "~4.8.2"
},
"engines": {
"npm": ">=7.0.0"
}
}