-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpackage.json
78 lines (78 loc) · 2.22 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
{
"name": "@module-federation/aegis",
"version": "1.4.2-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",
"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"
},
"dependencies": {
"@assemblyscript/loader": "0.21.1",
"@octokit/core": "4.0.5",
"@octokit/rest": "19.0.4",
"acme-client": "^5.0.0",
"as-bind": "0.8.2",
"assemblyscript": "0.21.1",
"cors": "^2.8.5",
"dotenv": "16.0.1",
"express": "4.18.1",
"express-fileupload": "^1.4.0",
"express-jwt": "7.7.5",
"import-fresh": "3.3.0",
"ipfs": "^0.63.0",
"jwks-rsa": "2.1.4",
"mesh-link": "0.13.6",
"mongodb": "4.9.0",
"multicast-dns": "7.2.5",
"nanoid": "3.3.2",
"nats": "2.7.1",
"path-to-regexp": "^6.2.1",
"pretty": "^2.0.0",
"pretty-cli": "^0.0.14",
"python-shell": "^3.0.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.13.9",
"ws": "^8.8.0"
},
"devDependencies": {
"@babel/cli": "7.18.10",
"@babel/core": "7.18.10",
"@babel/node": "7.18.10",
"@babel/preset-env": "7.18.10",
"@types/node": "16.11.52",
"babel-loader": "8.2.5",
"chalk": "5.0.1",
"cross-var": "1.1.0",
"eslint": "8.22.0",
"esm": "3.2.25",
"express-cli": "0.0.1",
"jest": "28.1.3",
"jsdoc": "3.6.11",
"jsdoc-to-markdown": "7.1.1",
"mocha": "10.0.0",
"mocha-esm": "1.1.1",
"prettier": "2.7.1",
"split": "1.0.1",
"standard": "^17.0.0",
"yarn": "1.22.19"
}
}