-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.46 KB
/
Copy pathpackage.json
File metadata and controls
54 lines (54 loc) · 1.46 KB
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
{
"name": "next-isomorphic-cookies",
"version": "1.0.0-alpha.8",
"description": "Using cookies in NextJS made easy! Seamless integration with SSG and SSR, while avoiding hydration mismatches.",
"main": "dist/index.js",
"scripts": {
"prepublishOnly": "npx tsc",
"test": "npx jest --coverage --silent"
},
"keywords": [
"next",
"react",
"cookies",
"isomorphic",
"universal"
],
"author": "Henrique Yuji Rossetti Inonhe <henriqueinonhe@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/henriqueinonhe/next-isomorphic-cookies.git",
"email": "henriqueinonhe@gmail.com"
},
"repository": {
"type": "git",
"url": "https://github.com/henriqueinonhe/next-isomorphic-cookies.git"
},
"devDependencies": {
"@testing-library/dom": "8.17.1",
"@testing-library/jest-dom": "5.16.5",
"@testing-library/react": "13.4.0",
"@types/jest": "29.0.0",
"@types/js-cookie": "3.0.2",
"@typescript-eslint/eslint-plugin": "5.37.0",
"@typescript-eslint/parser": "5.37.0",
"eslint": "^8.23.1",
"eslint-plugin-react": "7.31.8",
"eslint-plugin-react-hooks": "4.6.0",
"jest": "29.0.2",
"jest-environment-jsdom": "29.0.2",
"next": "12.3.0",
"prettier": "2.7.1",
"react": "18.2.0",
"react-dom": "18.2.0",
"ts-jest": "28.0.8",
"typescript": "4.8.2"
},
"peerDependencies": {
"next": ">=12",
"react": ">=17"
},
"dependencies": {
"js-cookie": "3.0.1"
}
}