-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
79 lines (79 loc) · 2.51 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
79
{
"name": "ignext",
"version": "0.0.1-alpha.1",
"description": "Ignite your Next.js app for Cloudflare",
"packageManager": "pnpm@7.9.4",
"bin": {
"ignext": "dist/bin.js"
},
"scripts": {
"build:bin": "esbuild --bundle --platform=node --outfile=dist/bin.js src/command/bin.ts",
"build:plugin": "esbuild --bundle --platform=node --external:webpack --outfile=dist/plugin.js src/plugin.ts",
"build:loader": "esbuild --bundle --platform=node --external:webpack --external:next --outfile=dist/loaders/ignext-server-loader.js src/loaders/ignext-server-loader.ts",
"build:adapter": "esbuild --bundle --sourcemap --external:next --external:url --external:querystring --format=esm --outfile=dist/internal/adapter.js src/internal/adapter.ts && sed -i.bak -e 's/next\\/dist\\//next\\/dist\\/esm\\//g' dist/internal/adapter.js",
"build": "rimraf dist && mkdir dist && run-p build:*",
"typecheck:all": "tsc --noEmit",
"typecheck": "run-p typecheck:*",
"lint": "xo",
"test": "jest",
"run-ignext": "ts-node src/index.ts"
},
"files": [
"dist"
],
"keywords": [
"Cloudflare",
"Next.js"
],
"author": "Zhuhao Wang (https://zhuhaow.me)",
"license": "MIT",
"homepage": "https://github.com/zhuhaow/ignext",
"devDependencies": {
"@cloudflare/workers-types": "^3.18.0",
"@next/bundle-analyzer": "^12.3.1",
"@types/fs-extra": "9.0.13",
"@types/isomorphic-fetch": "^0.0.36",
"@types/jest": "28.1.7",
"@types/klaw": "^3.0.3",
"@types/lodash-es": "^4.17.6",
"@types/node": "18.7.8",
"@types/wait-on": "^5.3.1",
"commander": "^9.4.1",
"esbuild": "^0.15.12",
"execa": "^6.1.0",
"fs-extra": "10.1.0",
"get-port": "^6.1.2",
"isomorphic-fetch": "^3.0.0",
"jest": "28.1.3",
"klaw": "^4.0.1",
"lodash-es": "^4.17.21",
"npm-run-all": "^4.1.5",
"rimraf": "^3.0.2",
"ts-jest": "28.0.8",
"ts-node": "10.9.1",
"typescript": "4.7.4",
"wait-on": "^6.0.1",
"wrangler": "2.0.27",
"xo": "0.51.0"
},
"peerDependencies": {
"@types/react": "^17.0.2 || ^18.0.0-0",
"@types/react-dom": "^17.0.2 || ^18.0.0-0",
"next": "^12.3.2-canary",
"react": "^17.0.2 || ^18.0.0-0",
"react-dom": "^17.0.2 || ^18.0.0-0",
"webpack": "^5.74.0"
},
"engines": {
"node": ">= 16"
},
"dependencies": {
"@types/react": "^18.0.21",
"@types/react-dom": "^18.0.6",
"change-case": "^4.1.2",
"next": "^12.3.2-canary.38",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"webpack": "^5.74.0"
}
}