This repository was archived by the owner on Feb 9, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 26
Expand file tree
/
Copy pathpackage.json
More file actions
132 lines (132 loc) · 4.4 KB
/
package.json
File metadata and controls
132 lines (132 loc) · 4.4 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
{
"name": "react-apollo-graphql",
"version": "5.0.0",
"description": "JavaScript meets web. React in tandem with Apollo. Minimal implementation that will help you get started with GraphQL.",
"repository": "https://github.com/developer239/react-apollo-graphql.git",
"author": "Michal Jarnot <m.jarnot@yahoo.com>",
"license": "MIT",
"scripts": {
"watch": "nodemon",
"build:client": "webpack --config ./webpack/client/prod.js",
"build:server": "webpack --config ./webpack/server/prod.js",
"build": "npm run build:client && npm run build:server",
"prod": "node build/server.js",
"format": "prettier --write '*/**/*.{ts,tsx,css,md,json}'",
"lint:ts": "eslint '{server,src}/**/*.{ts,tsx}'",
"lint:css": "stylelint 'src/**/*.{ts,tsx}'",
"lint:circular-dependencies": "madge --circular --extensions ts,tsx ./src",
"apollo:generate-types": " apollo client:codegen --target=typescript --globalTypesFile src/globalTypes.ts",
"apollo:generate-types:watch": "npm run apollo:generate-types -- --watch",
"apollo:remove-all-types": "find . -regex './src/.*__generated__.*' -type d -prune -exec rm -r \"{}\" \\;",
"test": "jest",
"test:coverage": "jest --coverage",
"heroku-postbuild": "npm run build",
"type-check": "tsc"
},
"dependencies": {
"@apollo/react-hooks": "3.1.3",
"antd": "3.26.8",
"apollo-cache": "1.3.4",
"apollo-cache-inmemory": "1.6.5",
"apollo-client": "2.6.8",
"apollo-link": "1.2.13",
"apollo-link-context": "1.0.19",
"apollo-link-error": "^1.1.12",
"apollo-link-http": "1.5.16",
"compression": "1.7.4",
"express": "4.17.1",
"formik": "2.1.4",
"graphql": "14.6.0",
"graphql-tag": "2.10.3",
"history": "4.10.1",
"invariant": "2.2.4",
"js-cookie": "2.2.1",
"react": "16.12.0",
"react-dom": "16.12.0",
"react-lines-ellipsis": "0.14.1",
"react-nl2br": "0.6.0",
"react-router": "5.1.2",
"react-router-dom": "5.1.2",
"styled-components": "4.4.1",
"yup": "0.28.1"
},
"devDependencies": {
"@apollo/react-testing": "3.1.3",
"@babel/core": "7.8.4",
"@babel/node": "7.8.4",
"@babel/plugin-transform-runtime": "7.8.3",
"@babel/preset-env": "7.8.4",
"@babel/preset-react": "7.8.3",
"@babel/preset-typescript": "7.8.3",
"@code-quality/commitlint-config": "^1.1.0",
"@code-quality/eslint-config-node": "^1.6.0",
"@code-quality/eslint-config-react": "^1.7.0",
"@code-quality/eslint-config-typescript": "^1.6.0",
"@code-quality/prettier-config": "2.1.0",
"@code-quality/stylelint-styled-components-config": "^1.1.0",
"@commitlint/cli": "^8.3.5",
"@testing-library/react": "9.4.0",
"@types/clean-webpack-plugin": "0.1.3",
"@types/compression": "1.0.1",
"@types/express": "4.17.2",
"@types/faker": "4.1.9",
"@types/graphql": "14.5.0",
"@types/history": "4.7.5",
"@types/invariant": "2.2.31",
"@types/jest": "25.1.2",
"@types/js-cookie": "2.2.4",
"@types/react": "16.9.19",
"@types/react-dom": "16.9.5",
"@types/react-router": "5.1.4",
"@types/react-router-dom": "5.1.3",
"@types/styled-components": "4.4.2",
"@types/webpack-dev-middleware": "2.0.3",
"@types/webpack-env": "1.15.1",
"@types/webpack-hot-middleware": "2.25.0",
"@types/webpack-merge": "4.1.5",
"@types/yup": "0.26.30",
"apollo": "2.22.0",
"babel-jest": "25.1.0",
"babel-loader": "8.0.6",
"clean-webpack-plugin": "3.0.0",
"css-loader": "3.4.2",
"dotenv-webpack": "1.7.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.0",
"eslint-import-resolver-webpack": "0.12.1",
"eslint-plugin-import": "^2.20.1",
"faker": "4.1.0",
"html-loader": "0.5.5",
"html-webpack-plugin": "3.2.0",
"husky": "4.2.1",
"jest": "25.1.0",
"lint-staged": "10.0.7",
"madge": "3.7.0",
"nodemon": "2.0.2",
"prettier": "1.19.1",
"source-map-loader": "0.2.4",
"style-loader": "1.1.3",
"stylelint": "13.0.0",
"stylelint-config-prettier": "^8.0.1",
"ts-jest": "25.2.0",
"typescript": "3.7.5",
"webpack": "4.41.5",
"webpack-cli": "3.3.10",
"webpack-dev-middleware": "3.7.2",
"webpack-dev-server": "3.10.3",
"webpack-hot-middleware": "2.25.0",
"webpack-merge": "4.2.2"
},
"keywords": [
"node",
"apollo",
"react",
"react-apollo",
"graphql",
"typescript",
"react-router",
"express",
"formik",
"yup"
]
}