-
Notifications
You must be signed in to change notification settings - Fork 154
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.54 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.54 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
{
"name": "@callstack/repack-dev-server",
"description": "A bundler-agnostic development server for React Native applications as part of @callstack/repack.",
"license": "MIT",
"version": "5.2.5",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": "./dist/index.js",
"./package.json": "./package.json"
},
"files": ["dist", "static"],
"homepage": "https://github.com/callstack/repack",
"repository": "github:callstack/repack",
"keywords": ["react-native", "repack", "re.pack", "server", "dev-server"],
"author": "zamotany <zamotany.oss@gmail.com>",
"engines": {
"node": ">=18"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public"
},
"scripts": {
"build": "tsc -b tsconfig.build.json",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"archive": "pnpm build && pnpm pack"
},
"dependencies": {
"@babel/code-frame": "^7.26.2",
"@fastify/middie": "^9.0.0",
"@fastify/sensible": "^6.0.0",
"fastify": "^5.7.2",
"fastify-favicon": "^5.0.0",
"fastify-plugin": "^5.0.0",
"http-proxy-middleware": "^3.0.3",
"launch-editor": "^2.10.0",
"open": "^10.1.0",
"pretty-format": "^28.1.0",
"source-map": "^0.7.4",
"ws": "^8.18.1"
},
"devDependencies": {
"@react-native/dev-middleware": "^0.84.1",
"@types/babel__code-frame": "^7.0.6",
"@types/node": "catalog:",
"@types/ws": "^8.18.0",
"typescript": "catalog:",
"vitest": "catalog:"
}
}