-
-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
80 lines (80 loc) · 2.36 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
77
78
79
80
{
"name": "use-sse",
"version": "3.0.0-beta.0",
"description": "useSSE - use server-side effect",
"main": "dist/index.js",
"repository": {
"type": "git",
"url": "https://github.com/kmoskwiak/useSSE"
},
"bugs": {
"url": "https://github.com/kmoskwiak/useSSE/issues"
},
"scripts": {
"build": "tsc",
"test:watch": "jest --watch",
"test": "jest",
"test:e2e": "playwright test",
"example:build:client": "webpack --config examples/basic/configs/prod.js",
"example:build:server": "webpack --config examples/basic/configs/server.js",
"example:start": "npm run example:build:client && npm run example:build:server && node examples/basic/dist-server/js/server.js"
},
"keywords": [
"useEffect",
"SSR",
"server",
"side",
"hook"
],
"peerDependencies": {
"react": ">=18.2.0"
},
"devDependencies": {
"@babel/preset-env": "^7.22.5",
"@babel/preset-react": "^7.22.5",
"@babel/preset-typescript": "^7.22.5",
"@playwright/test": "^1.35.1",
"@testing-library/dom": "^10.2.0",
"@testing-library/jest-dom": "^6.4.6",
"@testing-library/react": "^14.3.1",
"@types/axios": "^0.14.0",
"@types/express": "^4.17.17",
"@types/jest": "^29.5.2",
"@types/node": "^20.0.0",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@typescript-eslint/eslint-plugin": "^5.59.11",
"@typescript-eslint/parser": "^5.59.11",
"axios": "^1.4.0",
"babel-core": "^6.26.3",
"babel-loader": "^9.1.2",
"copy-webpack-plugin": "^11.0.0",
"css-loader": "^6.8.1",
"eslint": "^8.43.0",
"eslint-config-xo": "^0.43.1",
"eslint-config-xo-typescript": "^0.57.0",
"eslint-plugin-react": "^7.32.2",
"express": "^4.18.2",
"file-loader": "^6.2.0",
"html-to-json-parser": "^2.0.1",
"html-webpack-plugin": "^5.5.3",
"jest": "^29.5.0",
"jest-environment-jsdom": "^29.7.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router-dom": "^6.12.1",
"style-loader": "^3.3.3",
"ts-jest": "^29.1.0",
"ts-loader": "^9.4.3",
"typescript": "^5.1.3",
"webpack": "^5.87.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^4.15.1",
"webpack-merge": "^5.9.0"
},
"author": "Kasper Moskwiak <[email protected]> (https://kspr.dev)",
"funding": {
"url": "https://github.com/sponsors/kmoskwiak"
},
"license": "MIT"
}