-
-
Notifications
You must be signed in to change notification settings - Fork 25
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2.24 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 2.24 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
{
"name": "@cedarjs/api-server",
"version": "0.0.5",
"description": "CedarJS's HTTP server for Serverless Functions",
"repository": {
"type": "git",
"url": "git+https://github.com/cedarjs/cedar.git",
"directory": "packages/api-server"
},
"license": "MIT",
"main": "./dist/createServer.js",
"types": "./dist/createServer.d.ts",
"bin": {
"rw-api-server-watch": "./dist/watch.js",
"rw-log-formatter": "./dist/logFormatter/bin.js",
"rw-server": "./dist/bin.js"
},
"files": [
"dist"
],
"scripts": {
"build": "tsx ./build.mts && yarn build:types",
"build:pack": "yarn pack -o cedarjs-api-server.tgz",
"build:types": "tsc --build --verbose tsconfig.build.json",
"build:watch": "nodemon --watch src --ext \"js,jsx,ts,tsx\" --ignore dist --exec \"yarn build && yarn fix:permissions\"",
"diagnose:timeouts": "yarn build && node scripts/diagnose-timeouts.mjs",
"fix:permissions": "chmod +x dist/index.js; chmod +x dist/watch.js",
"prepublishOnly": "NODE_ENV=production yarn build",
"test": "vitest run",
"test:watch": "vitest watch"
},
"dependencies": {
"@cedarjs/context": "workspace:*",
"@cedarjs/fastify-web": "workspace:*",
"@cedarjs/internal": "workspace:*",
"@cedarjs/project-config": "workspace:*",
"@cedarjs/web-server": "workspace:*",
"@fastify/multipart": "9.0.3",
"@fastify/url-data": "6.0.3",
"ansis": "4.1.0",
"chokidar": "3.6.0",
"dotenv-defaults": "5.0.2",
"fast-glob": "3.3.3",
"fast-json-parse": "1.0.3",
"fastify": "5.4.0",
"fastify-raw-body": "5.0.0",
"pretty-bytes": "5.6.0",
"pretty-ms": "7.0.1",
"qs": "6.13.0",
"split2": "4.2.0",
"yargs": "17.7.2"
},
"devDependencies": {
"@cedarjs/framework-tools": "workspace:*",
"@types/aws-lambda": "8.10.152",
"@types/qs": "6.9.16",
"@types/split2": "4.2.3",
"@types/yargs": "17.0.33",
"memfs": "4.17.2",
"pino-abstract-transport": "1.2.0",
"tsx": "4.20.3",
"typescript": "5.6.2",
"vitest": "3.2.4"
},
"peerDependencies": {
"@cedarjs/graphql-server": "workspace:*"
},
"peerDependenciesMeta": {
"@cedarjs/graphql-server": {
"optional": true
}
},
"gitHead": "3905ed045508b861b495f8d5630d76c7a157d8f1"
}