-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
55 lines (55 loc) · 1.4 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
{
"name": "nextjs-middleware-chain",
"version": "0.0.7",
"description": "Next.js middleware library for API and SSR routes.",
"main": "./dist/main.js",
"scripts": {
"test": "jest",
"test.watch": "jest --watch",
"lint": "eslint src/",
"build": "rollup -c",
"build.watch": "rollup -c --watch"
},
"exports": {
"require": "./dist/main.js",
"import": "./dist/main.esm.js"
},
"directories": {},
"homepage": "https://github.com/BenjaminWFox/nextjs-middleware-chain",
"repository": {
"type": "git",
"url": "https://github.com/BenjaminWFox/nextjs-middleware-chain.git"
},
"keywords": [
"next",
"nextjs",
"middleware",
"chainable-methods",
"chainable"
],
"author": "Ben Fox",
"license": "ISC",
"jest": {
"transform": {
"^.+\\.[t|j]sx?$": "babel-jest"
}
},
"devDependencies": {
"@babel/polyfill": "^7.12.1",
"@babel/preset-env": "^7.14.5",
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-node-resolve": "^13.0.0",
"@types/jest": "^26.0.23",
"@typescript-eslint/eslint-plugin": "^4.27.0",
"@typescript-eslint/parser": "^4.27.0",
"babel-jest": "^27.0.2",
"eslint": "^7.29.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-no-autofix": "^1.1.2",
"jest": "^27.0.4",
"next": "^11.0.0",
"rollup": "^2.52.1",
"typescript": "^4.3.2"
}
}