-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.73 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
{
"name": "@marcus-rise/next-api-interceptor",
"version": "0.1.1",
"license": "MIT",
"description": "Interceptor for serverless nextjs api",
"author": {
"name": "Ilya Konstantinov",
"email": "[email protected]",
"url": "https://ilya-konstantinov.ru"
},
"publishConfig": {
"access": "public"
},
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"typings": "dist/index.d.ts",
"scripts": {
"lint": "eslint src",
"test": "jest",
"rollup": "rollup --config rollup.config.ts --configPlugin typescript",
"build": "yarn rollup",
"prebuild": "rimraf dist",
"dev": "yarn build --watch",
"prepublishOnly": "yarn build"
},
"files": [
"dist/"
],
"repository": {
"type": "git",
"url": "git+https://github.com/Marcus-Rise/next-api-interceptor.git"
},
"bugs": {
"url": "https://github.com/Marcus-Rise/next-api-interceptor/issues"
},
"homepage": "https://github.com/Marcus-Rise/next-api-interceptor",
"keywords": [
"nextjs",
"api",
"interceptor",
"serverless"
],
"devDependencies": {
"@rbnlffl/rollup-plugin-eslint": "^3.0.0",
"@rollup/plugin-commonjs": "^22.0.1",
"@rollup/plugin-node-resolve": "^13.3.0",
"@rollup/plugin-typescript": "^8.3.3",
"@types/jest": "^28.1.8",
"@typescript-eslint/eslint-plugin": "5.30.7",
"@typescript-eslint/parser": "^5.30.7",
"eslint": "^8.20.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^28.1.3",
"next": "^12.2.5",
"prettier": "^2.7.1",
"rimraf": "^3.0.2",
"rollup": "^2.77.0",
"rollup-plugin-dts": "^4.2.2",
"rollup-plugin-terser": "^7.0.2",
"ts-jest": "^28.0.8",
"typescript": "^4.7.4"
}
}