-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
74 lines (74 loc) · 2.35 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
{
"name": "federation-poc",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"engines": {
"node": "16.13.0"
},
"devDependencies": {
"@babel/cli": "^7.17.10",
"@babel/core": "^7.17.10",
"@babel/plugin-transform-runtime": "^7.17.10",
"@babel/preset-env": "^7.17.10",
"@babel/preset-react": "^7.16.7",
"@babel/preset-typescript": "^7.16.7",
"@babel/runtime": "^7.17.9",
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.13",
"@types/node": "^17.0.23",
"@types/react": "^18.0.9",
"@types/react-dom": "^18.0.3",
"@types/ws": "^8.5.3",
"@typescript-eslint/eslint-plugin": "^5.22.0",
"@typescript-eslint/parser": "^5.22.0",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.2.5",
"dotenv-webpack": "^7.1.0",
"eslint": "^8.15.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.29.4",
"eslint-plugin-react-hooks": "^4.5.0",
"html-webpack-plugin": "^5.5.0",
"path": "^0.12.7",
"prettier": "^2.6.2",
"ts-loader": "^9.3.0",
"ts-node-dev": "^1.1.8",
"typescript": "^4.6.3",
"webpack": "^5.72.0",
"webpack-cli": "^4.9.2",
"webpack-dev-server": "^4.9.0"
},
"dependencies": {
"@apollo/client": "^3.6.2",
"@apollo/federation": "^0.36.0",
"@apollo/gateway": "^0.50.0",
"@apollo/subgraph": "^0.4.0",
"apollo-datasource": "^3.3.2",
"apollo-server-express": "^3.6.6",
"cross-fetch": "^3.1.5",
"dotenv": "^16.0.0",
"express": "^4.17.3",
"graphql": "^16.4.0",
"graphql-parse-resolve-info": "^4.12.3",
"graphql-subscriptions": "^2.0.0",
"graphql-tools": "^8.3.0",
"graphql-ws": "^5.8.1",
"react": "^18.1.0",
"react-dom": "^18.1.0",
"ws": "^8.6.0"
},
"scripts": {
"start:books": "ts-node-dev ./books-service/index.ts",
"start:users": "ts-node-dev ./user-service/index.ts",
"start:gateway": "ts-node-dev ./gateway/index.ts",
"start:server": "ts-node-dev ./scripts/start.ts",
"start:client": "webpack-dev-server --config ./config/webpack.config.js --open --mode development --hot",
"format": "prettier --write '*.json' '**/*.{js,ts,tsx,scss,json}'",
"lint": "eslint '**/*.{js,ts,tsx}' --max-warnings 20"
}
}