-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 3.31 KB
/
package.json
File metadata and controls
86 lines (86 loc) · 3.31 KB
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
{
"name": "@uswitch/koa-core",
"version": "2.1.6",
"description": "🎾 An example project showing the user of all core `@uswitch/koa` libraries",
"main": "koa-core.js",
"scripts": {
"------- TESTING": "---------------------------------------------------",
"example": "node --experimental-specifier-resolution=node ./__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 <dgc336@gmail.com> (http://domcharlesworth.co.uk/)",
"license": "MIT",
"homepage": "https://github.com/uswitch/koa-core#readme",
"watch": {
"example": "__example__/*"
},
"dependencies": {
"@uswitch/koa-access": "^2.10.1",
"@uswitch/koa-cookie": "^1.5.1",
"@uswitch/koa-core": "^2.1.1",
"@uswitch/koa-prometheus": "^1.1.1",
"@uswitch/koa-signal": "^1.11.1",
"@uswitch/koa-timeout": "^1.7.1",
"@uswitch/koa-tracer": "^1.8.1",
"@uswitch/koa-zipkin": "^1.12.1",
"koa": "^2.15.4",
"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.23.2",
"@babel/core": "^7.23.2",
"@babel/plugin-syntax-function-bind": "^7.23.2",
"@babel/plugin-transform-object-rest-spread": "^7.23.2",
"@babel/plugin-transform-runtime": "^7.23.2",
"@babel/preset-env": "^7.23.2",
"@babel/traverse": "^7.23.2",
"ajv-cli": "^5.0.0",
"axios": "^1.7.0",
"axios-cache-interceptor": "^1.6.0",
"del": "^3.0.0",
"del-cli": "6.0.0",
"jest": "^30.1.3",
"lerna": "^9.0.6",
"npm-watch": "^0.13.0"
},
"gitHead": "9c71aba948deb9f1f43a03b85f86cee818417afe",
"overrides": {
"fast-json-patch": "^3.1.1",
"glob": "^10.5.0",
"urijs": "^1.19.7",
"qs": "^6.14.1"
},
"volta": {
"node": "24.0.0"
},
"nx": {}
}