-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
69 lines (69 loc) · 1.89 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": "next-plugin-preval",
"version": "0.0.0",
"description": "",
"keywords": [
"next",
"next.js",
"preval"
],
"repository": {
"type": "git",
"url": "https://github.com/ricokahler/next-plugin-preval.git"
},
"license": "MIT",
"author": {
"name": "Rico Kahler",
"email": "[email protected]",
"url": "https://github.com/ricokahler"
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"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.12.10",
"@babel/preset-env": "^7.12.11",
"@babel/register": "^7.13.16",
"babel-plugin-module-resolver": "^4.1.0",
"loader-utils": "^2.0.0",
"regenerator-runtime": "^0.14.0",
"require-from-string": "^2.0.2",
"tsconfig-paths": "^3.9.0",
"webpack": "^5.56.0"
},
"devDependencies": {
"@babel/cli": "7.25.6",
"@babel/preset-typescript": "7.24.7",
"@types/babel__core": "7.20.5",
"@types/jest": "26.0.24",
"@types/require-from-string": "1.2.3",
"@typescript-eslint/eslint-plugin": "4.33.0",
"@typescript-eslint/parser": "4.33.0",
"@babel/eslint-parser": "7.25.1",
"eslint": "7.32.0",
"eslint-config-react-app": "6.0.0",
"eslint-plugin-flowtype": "5.10.0",
"eslint-plugin-import": "2.30.0",
"eslint-plugin-jsx-a11y": "6.10.0",
"eslint-plugin-react": "7.37.0",
"eslint-plugin-react-hooks": "4.6.2",
"jest": "27.5.1",
"next": "14.2.13",
"prettier": "2.8.8",
"react": "18.3.1",
"react-dom": "18.3.1",
"semantic-release": "17.4.7",
"typescript": "4.9.5"
},
"peerDependencies": {
"next": "^9 || ^10 || ^11 || ^12.0.0 || ^13 || ^14"
}
}