-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
94 lines (94 loc) · 3.74 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
{
"name": "aegis-app",
"version": "1.0.1",
"description": "",
"main": "./dist/main.js",
"installConfig": {
"pnp": false
},
"repository": {
"url": "https://github.com/module-federation/aegis-app"
},
"scripts": {
"build": "export NODE_OPTIONS=--openssl-legacy-provider NPM_TOKEN=123 && yarn clean && webpack --config webpack.config.js",
"start": "./start.sh",
"watch": "node watch.mjs",
"bar": "yarn build-n-restart",
"build-local": "yarn clean && webpack --config webpack.config.local.js",
"build-wasm": "cd ../aegis/wasm && yarn deploy",
"build-cache": "yarn clean-cache && webpack --config webpack.config.cache.local",
"start-repo": "node --title aegis-repo repo.js 8000 dist",
"hot-reload": "curl -s http://localhost/reload",
"start-all": "npm run kafka-start && node -r dotenv/config dist/main.js",
"start-cache": "node --title aegis-cache-repo repo.js 8001 cache",
"build-github": "yarn clean && webpack --config webpack.config.js",
"run:install": "./install.sh",
"new-model-github": "git commit -a -m test && yarn build-local && yarn open-reload",
"webswitch": "cd ../aegis-host ; export SWITCH=true ; export PORT=8888 ; yarn start",
"link-n-restart": "cd ../aegis && ./start.sh",
"build-all": "cd ../aegis && yarn build && cd ../aegis-host && yarn build && cd ../aegis-app && yarn build-local",
"build-n-restart": "yarn build-all && yarn link-n-restart",
"stop-host": "cd ../aegis-host && yarn stop",
"restart-host": "yarn stop-host && yarn rebuild",
"reload-local": "curl -s http://localhost/reload",
"opengp": "gp preview https://${PORT}-${GITPOD_WORKSPACE_ID}.${GITPOD_WORKSPACE_CLUSTER_HOST}/hot-reload.html",
"open-reload": "open -u https://${PORT}-${GITPOD_WORKSPACE_ID}.${GITPOD_WORKSPACE_CLUSTER_HOST}/hot-reload.html",
"openurl": "open -u http://localhost",
"new-model-v2": "git commit -a -m test && yarn build-local && open -u http://localhost/reload",
"update-model": "git commit -a -m test && yarn build-locol",
"clean": "rm -rf dist",
"clean-cache": "rm -rf cache",
"transpile": "babel src -d dist",
"test": "mocha",
"demo": "open http://localhost",
"kafka-start": "npm run kafka-stop && scripts/start-kafka.sh && sleep 5 && npm run kafka-topics-create",
"kafka-stop": "scripts/stop-kafka.sh",
"kafka-clear-events": "npm run kafka-topics-delete && npm run kafka-topics-create",
"kafka-topics-delete": "scripts/delete-topics.sh",
"kafka-topics-create": "scripts/create-topics.sh",
"refresh-token": "./accessToken.sh",
"tsc": "tsc api/litehouse.ts"
},
"author": "Tyson Midboe",
"license": "MIT",
"dependencies": {
"@assemblyscript/loader": "^0.19.10",
"@module-federation/node": "^1.0.5",
"axios": "^0.21.1",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"express-session": "^1.17.1",
"fastify": "^4.17.0",
"kafkajs": "^1.14.0",
"mongodb": "4.9.0",
"multicast-dns": "^7.2.5",
"nanoid": "^3.1.12",
"nodemon": "^2.0.20",
"pnp": "^0.0.3",
"query-params-mongo": "^1.1.3",
"smartystreets-javascript-sdk": "^1.6.0",
"square": "^8.1.0",
"typescript": "^5.1.6",
"ws": "^7.5.2",
"yarn": "^1.22.19"
},
"devDependencies": {
"@babel/cli": "^7.10.5",
"@babel/core": "^7.11.1",
"@babel/helper-validator-option": "^7.12.17",
"@babel/polyfill": "^7.11.5",
"@babel/preset-env": "^7.11.0",
"@babel/register": "^7.12.1",
"assemblyscript": "^0.19.10",
"babel-loader": "^8.2.5",
"esm": "^3.2.25",
"express-cli": "0.0.1",
"is-core-module": "^2.2.0",
"mocha": "^8.2.0",
"py-loader": "^0.3.1",
"snowpack": "^3.4.0",
"webpack": "^5.88.2",
"webpack-cli": "^5.1.4",
"webpack-node-externals": "^2.5.2"
}
}