-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
80 lines (80 loc) · 2.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
{
"name": "@module-federation/aegis",
"version": "1.5.0-beta",
"module": "lib/index.js",
"main": "lib/index.js",
"repository": "[email protected]:module-federation/aegis.git",
"author": "Tyson Midboe <[email protected]>",
"license": "Apache-2.0",
"scripts": {
"start": "./start.sh",
"build": "npm run build:esm && npm run build:cjs && cd ../aegis/wasm && yarn build && yarn deploy",
"watch": "node watch.mjs",
"webswitch": "cd ../aegis-host ; export SWITCH=true ; export PORT=8888 ; yarn start",
"build:esm": "babel --delete-dir-on-start -d esm/ src/ && cp src/index.js esm",
"build:cjs": "babel --delete-dir-on-start --env-name cjs -d lib/ src/ && cp src/index.js lib",
"format": "yarn pretty -- --write",
"prepublish": "yarn build",
"stats": "git ls-files | xargs wc -l",
"test": "jest",
"buildc": "gcc forkrun.c -o forkrun"
},
"peerDependencies": {
"core-js": "^3",
"express": "4.18.2"
},
"dependencies": {
"@assemblyscript/loader": "0.25.2",
"@octokit/core": "4.0.5",
"@octokit/rest": "19.0.5",
"acme-client": "^5.0.0",
"as-bind": "0.8.2",
"assemblyscript": "0.25.2",
"cors": "^2.8.5",
"dotenv": "16.0.3",
"express": "^4.18.2",
"express-fileupload": "^1.4.0",
"express-jwt": "7.7.7",
"import-fresh": "3.3.0",
"jwks-rsa": "2.1.5",
"mesh-link": "0.13.6",
"mongodb": "^4.12.1",
"multicast-dns": "7.2.5",
"nanoid": "3.3.2",
"path-to-regexp": "^6.2.1",
"query-params-mongo": "^1.1.3",
"regenerator-runtime": "0.13.9",
"rimraf": "3.0.2",
"sharedmap": "^1.2.0",
"webpack": "^5.66.0",
"whois": "2.14.0",
"ws": "^8.8.0"
},
"devDependencies": {
"@babel/cli": "7.18.10",
"@babel/core": "^7.20.7",
"@babel/eslint-parser": "^7.19.1",
"@babel/node": "7.18.10",
"@babel/preset-env": "7.18.10",
"@types/node": "16.18.11",
"babel-loader": "8.2.5",
"chalk": "5.0.1",
"cross-var": "1.1.0",
"eslint": "^8.30.0",
"eslint-config-prettier": "^8.5.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-prettier": "^4.2.1",
"esm": "3.2.25",
"express-cli": "0.0.1",
"jest": "^29.3.1",
"jsdoc": "3.6.11",
"jsdoc-to-markdown": "7.1.1",
"mocha": "10.2.0",
"mocha-esm": "1.1.1",
"prettier": "^2.8.1",
"pretty-cli": "^0.0.14",
"split": "1.0.1",
"standard": "^17.0.0",
"yarn": "1.22.19"
}
}