-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
108 lines (108 loc) · 3.04 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
{
"name": "next-koa",
"version": "2.2.0",
"description": "A koa middleware and some tools for next.js",
"main": "dist/server/index.js",
"types": "dist/server/index.d.ts",
"scripts": {
"dev": "node -r ./test/next-koa/server/register ./node_modules/.bin/micro-dev ./test/next-koa/server/index.ts -p 8008 --silent --watch ./test/next-koa/server",
"test": "HEADLESS=true jest",
"type-check": "tsc --noEmit",
"type-check:watch": "npm run type-check -- --watch",
"build": "npm run build:types && npm run build:js",
"build:types": "tsc --emitDeclarationOnly --outDir dist",
"build:js": "babel src --no-comments --extensions \".ts,.tsx\" --out-dir dist",
"format": "prettier --write \"src/**/*.ts\" \"src/**/*.tsx\" \"src/**/*.js\"",
"lint": "tslint -p tsconfig.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/xinpianchang/next-koa.git"
},
"keywords": [
"koa",
"koa2",
"next",
"nextjs",
"next-koa"
],
"author": "tangye",
"license": "MIT",
"homepage": "https://github.com/xinpianchang/next-koa#readme",
"files": [
"plugin.js",
"dist",
"derferred.d.ts",
"derferred.js",
"getstate.d.ts",
"getstate.js",
"redirect.d.ts",
"redirect.js",
"config.d.ts",
"config.js",
"app.d.ts",
"app.js",
"layout.d.ts",
"layout.js"
],
"devDependencies": {
"@babel/runtime-corejs2": "^7.8.7",
"micro": "^9.3.4",
"micro-dev": "^3.0.0",
"@babel/register": "^7.8.6",
"@babel/cli": "^7.8.4",
"@babel/core": "^7.8.6",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/plugin-transform-runtime": "^7.8.3",
"@babel/preset-env": "^7.8.6",
"@babel/preset-react": "^7.8.3",
"@babel/preset-typescript": "^7.8.3",
"@types/cross-spawn": "^6.0.0",
"@types/enzyme": "^3.10.3",
"@types/enzyme-adapter-react-16": "^1.0.5",
"@types/jest": "^25.1.3",
"@types/koa": "^2.11.2",
"@types/node": "^13.9.0",
"@types/node-fetch": "^2.5.0",
"babel-jest": "^25.1.0",
"babel-plugin-add-module-exports": "^1.0.2",
"babel-plugin-dynamic-import-node": "^2.3.0",
"browserstack-local": "^1.4.2",
"chromedriver": "^80.0.1",
"cross-spawn": "^7.0.0",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.2",
"express": "^4.17.1",
"get-port": "^5.0.0",
"jest": "^25.1.0",
"jest-environment-node": "^25.1.0",
"koa": "^2.11.0",
"koa2-router": "^2.0.1",
"next": "9.5.4",
"node-fetch": "^2.6.0",
"prettier": "^1.19.1",
"querystring": "^0.2.0",
"react": "^16.13.0",
"react-dom": "^16.13.0",
"tree-kill": "^1.2.2",
"ts-jest": "^25.2.1",
"ts-node": "^8.6.2",
"tslint": "^6.0.0",
"tslint-config-prettier": "^1.18.0",
"typescript": "^3.8.3",
"wait-for": "^2.1.1",
"wait-port": "^0.2.7",
"wd": "^1.12.1"
},
"dependencies": {
"delegates": "^1.0.0",
"next-transpile-modules": "4.1.0"
},
"engines": {
"node": ">= 8.0.0"
},
"peerDependencies": {
"koa": "^2.11.0",
"next": "9.5.4"
}
}