-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 2.04 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 2.04 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
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "@state-less/react-server",
"version": "2.0.42",
"description": "The react-server library",
"scripts": {
"build": "babel src --out-dir dist --extensions \".ts,.tsx\" --copy-files && tsc",
"start": "yarn build && node dist/index.js",
"test": "yarn jest --coverage"
},
"keywords": [
"react",
"server",
"react-server",
"jsx",
"tsx",
"typescript"
],
"author": "Moritz Roessler",
"homepage": "https://state-less.cloud",
"repository": {
"type": "git",
"url": "https://github.com/state-less/react-server.git"
},
"license": "MIT",
"main": "./dist/index.js",
"dependencies": {
"@babel/plugin-transform-react-jsx": "^7.21.0",
"@babel/preset-react": "^7.18.6",
"@types/event-emitter": "^0.3.3",
"@types/graphql": "^14.5.0",
"apollo-server": "^3.12.0",
"apollo-server-express": "^3.12.0",
"big-json": "^3.2.0",
"clone-deep": "^4.0.1",
"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",
"event-emitter": "^0.3.5",
"express": "^4.18.2",
"graphql": "^16.6.0",
"graphql-subscriptions": "^2.0.0",
"graphql-tools": "^8.3.18",
"jest": "^29.4.3",
"jsonwebtoken": "^9.0.0",
"pg-promise": "^11.4.3",
"prettier": "^2.8.4",
"react": "^18.2.0",
"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",
"@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": {
"react": "^18.2.0",
"react-dom": "^18.2.0"
}
}