-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.84 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.84 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
55
56
57
58
{
"name": "@state-less/react-client",
"version": "2.0.13",
"description": "The react-server client",
"main": "dist/index.js",
"author": "Moritz Roessler",
"license": "MIT",
"scripts": {
"build": "babel src --out-dir dist --extensions \".ts,.tsx\" --copy-files && tsc",
"start": "yarn build && node dist/index.js",
"test": "yarn jest --coverage"
},
"dependencies": {
"@apollo/client": "^3.8.10",
"@babel/plugin-transform-react-jsx": "^7.21.0",
"@babel/preset-react": "^7.18.6",
"@testing-library/jest-dom": "^5.16.5",
"@types/graphql": "^14.5.0",
"apollo-server": "^3.12.0",
"apollo-server-express": "^3.12.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.32.2",
"express": "^4.18.2",
"graphql": "^16.6.0",
"graphql-subscriptions": "^2.0.0",
"graphql-tools": "^8.3.18",
"jest": "^29.4.3",
"jest-environment-jsdom": "^29.5.0",
"jotai": "^2.0.3",
"jsonwebtoken": "^9.0.2",
"jwt-decode": "^4.0.0",
"prettier": "^2.8.4",
"subscriptions-transport-ws": "^0.11.0",
"uuid": "^9.0.0"
},
"devDependencies": {
"@babel/cli": "^7.21.0",
"@babel/core": "^7.21.0",
"@babel/plugin-transform-runtime": "^7.21.0",
"@babel/preset-env": "^7.20.2",
"@babel/preset-typescript": "^7.21.0",
"@testing-library/react": "^14.0.0",
"@types/jest": "^29.4.0",
"@typescript-eslint/eslint-plugin": "^5.54.0",
"@typescript-eslint/parser": "^5.54.0",
"eslint": "^8.35.0",
"eslint-plugin-simple-import-sort": "^10.0.0",
"typescript": "^4.9.5"
},
"peerDependencies": {
"jsonwebtoken": "^9.0.2",
"react": "^18.2.0",
"react-dom": "^18.2.0"
}
}