-
-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathpackage.json
76 lines (76 loc) · 2.08 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
70
71
72
73
74
75
76
{
"name": "next-persist",
"version": "1.2.4",
"description": "Client-side persistence with server-side rendering",
"main": "lib/index.js",
"scripts": {
"prebuild": "rm -rf lib",
"build": "npm run prebuild && npx tsc -p tsconfig.json",
"test": "jest",
"lint": "eslint . --ext .ts",
"tsc": "npm run build",
"prepublish": "npm run tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/oslabs-beta/next-persist.git"
},
"keywords": [
"next-persist",
"next",
"next.js",
"react",
"redux",
"persist",
"localStorage",
"cookies",
"client-side rendering",
"server-side rendering"
],
"author": "most.js",
"license": "MIT",
"bugs": {
"url": "https://github.com/oslabs-beta/next-persist/issues"
},
"homepage": "https://github.com/oslabs-beta/next-persist#readme",
"dependencies": {
"cookie": "^0.4.1",
"js-cookie": "^3.0.5"
},
"devDependencies": {
"@jest/types": "^29.6.3",
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.4.8",
"@testing-library/react": "^16.0.0",
"@testing-library/user-event": "^14.5.2",
"@types/cookie": "^0.6.0",
"@types/jest": "^29.5.12",
"@types/js-cookie": "^3.0.6",
"@types/json-schema": "^7.0.15",
"@types/next": "^9.0.0",
"@types/prop-types": "^15.7.12",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@types/react-redux": "^7.1.33",
"@types/redux": "^3.6.31",
"@types/redux-mock-store": "^1.0.6",
"@types/scheduler": "^0.23.0",
"@types/testing-library__dom": "^7.0.2",
"@types/testing-library__jest-dom": "^5.14.9",
"@types/testing-library__react": "^10.0.1",
"@typescript-eslint/eslint-plugin": "^7.17.0",
"@typescript-eslint/parser": "^7.17.0",
"eslint": "^8.57.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jsdom": "^24.1.1",
"redux-mock-store": "^1.5.4",
"ts-jest": "^29.2.3",
"ts-node": "^10.9.2",
"typescript": "^5.5.4"
},
"peerDependencies": {
"react": ">=16.8.3",
"react-redux": ">=7.1.0"
}
}