-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
76 lines (76 loc) · 3.08 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
{
"name": "@uswitch/koa-core",
"version": "2.0.6",
"description": "🎾 An example project showing the user of all core `@uswitch/koa` libraries",
"main": "koa-core.js",
"scripts": {
"------- TESTING": "---------------------------------------------------",
"example": "node --experimental-modules ./__example__/server.mjs",
"example:watch": "npm-watch example",
"test": "lerna run test --ignore @uswitch/koa-core",
"audit": "ROOT=`pwd`; for l in packages/koa*; do cd $ROOT/$l; echo \"Auditing: $l\"; npm audit; cd $ROOT; done",
"ls:packages": "ROOT=`pwd`; for l in packages/koa*; do cd $ROOT/$l; echo \"npm ls: $l\"; npm ls; cd $ROOT; done",
"ls": "lerna ls",
"------- BUILDING": "--------------------------------------------------",
"build:deps": "node ./__scripts__/build-dependencies.js",
"update:deps": "node __scripts__/update-dependencies.js",
"doc:deps": "node ./__scripts__/doc-dependencies.js; node ./__scripts__/doc-internal-packages.js",
"postupdate:deps": "git commit package.json package-lock.json -m '🎾 Update package dependencies'",
"postdoc:deps": "git commit README.md -m '🎾 Update readme with latest dependencies'",
"prepublish:packages": "npm run doc:deps; npm run build:deps; npm run build",
"publish:version": "lerna version",
"publish:npm": "lerna publish from-package --message '🚀 Begin publish'",
"publish:github": "lerna publish from-package --message '🚀 Begin publish' --registry='https://npm.pkg.github.com/'",
"publish:packages": "npm run publish:version && npm run publish:github",
"clean": "node ./__scripts__/clean-dependencies.js",
"build": "lerna run build --ignore @uswitch/koa-core"
},
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/uswitch/koa-core.git"
},
"author": "Dom Charlesworth <[email protected]> (http://domcharlesworth.co.uk/)",
"license": "MIT",
"homepage": "https://github.com/uswitch/koa-core#readme",
"watch": {
"example": "__example__/*"
},
"dependencies": {
"@uswitch/koa-access": "^2.9.11",
"@uswitch/koa-cookie": "^1.4.11",
"@uswitch/koa-core": "^2.0.3",
"@uswitch/koa-prometheus": "^1.0.3",
"@uswitch/koa-signal": "^1.10.11",
"@uswitch/koa-timeout": "^1.6.11",
"@uswitch/koa-tracer": "^1.7.11",
"@uswitch/koa-zipkin": "^1.11.13",
"koa": "^2.6.2",
"koa-bodyparser": "^4.2.1",
"koa-compose": "^4.1.0",
"koa-helmet": "^4.0.0",
"koa-requestid": "^2.0.1",
"koa-router": "^7.4.0",
"koa-static": "^5.0.0"
},
"devDependencies": {
"@babel/cli": "^7.0.0",
"@babel/core": "^7.22.5",
"@babel/plugin-syntax-function-bind": "^7.22.5",
"@babel/plugin-transform-object-rest-spread": "^7.22.15",
"@babel/plugin-transform-runtime": "^7.22.15",
"@babel/preset-env": "^7.22.15",
"axios": "^0.21.1",
"axios-cache-adapter": "^2.3.3",
"del": "^3.0.0",
"del-cli": "^1.1.0",
"lerna": "^3.22.1",
"npm-watch": "^0.3.0"
},
"gitHead": "094e57d5061356d238b7082e8b4c904ed51c4abf",
"volta": {
"node": "18.17.1"
}
}