forked from ricokahler/next-plugin-preval
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 1.79 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
{
"name": "@sweetsideofsweden/next-plugin-preval",
"version": "3.0.0",
"description": "",
"keywords": [
"next",
"next.js",
"preval"
],
"repository": {
"type": "git",
"url": "https://github.com/sweet-side-of-sweden/next-plugin-preval.git"
},
"license": "MIT",
"author": {
"name": "Rico Kahler",
"email": "ricokahler@me.com",
"url": "https://github.com/ricokahler"
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"publishConfig": {
"access": "public"
},
"scripts": {
"test": "jest",
"typecheck": "tsc --noEmit --emitDeclarationOnly false",
"semantic-release": "semantic-release",
"build": "./scripts/build",
"lint": "eslint src",
"prepare": "npm run build",
"build-example-app": "./scripts/build-example-app"
},
"dependencies": {
"@babel/core": "^7.22.9",
"@babel/preset-env": "^7.22.9",
"@babel/register": "^7.22.5",
"babel-plugin-module-resolver": "^5.0.0",
"loader-utils": "^2.0.4",
"regenerator-runtime": "^0.13.7",
"require-from-string": "^2.0.2",
"tsconfig-paths": "^4.2.0",
"webpack": "^5.88.2"
},
"devDependencies": {
"@babel/cli": "7.18.9",
"@babel/preset-typescript": "7.18.6",
"@types/babel__core": "7.20.1",
"@types/jest": "29.5.3",
"@types/require-from-string": "1.2.1",
"@typescript-eslint/eslint-plugin": "6.2.0",
"@typescript-eslint/parser": "6.2.0",
"babel-eslint": "10.1.0",
"eslint": "8.45.0",
"eslint-config-next": "14.0.2",
"eslint-config-prettier": "8.8.0",
"jest": "29.6.1",
"next": "14.0.2",
"node-fetch": "2.6.12",
"prettier": "3.0.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"semantic-release": "21.0.7",
"typescript": "4.7.4"
},
"peerDependencies": {
"next": "^14"
}
}