-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
101 lines (101 loc) · 3.47 KB
/
package.json
File metadata and controls
101 lines (101 loc) · 3.47 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
{
"name": "@sample/app",
"version": "0.0.4",
"author": "",
"license": "MIT",
"main": "src/index.ts",
"repository": {
"type": "git",
"url": "maapteh/graphql-modules-app/packages/graphql-app"
},
"engines": {
"node": ">= 10.16.x",
"yarn": ">= 1.16.0"
},
"scripts": {
"prepare": "yarn build",
"precommit": "lint-staged",
"audit": "yarn audit",
"dev": "next -p 4001",
"build": "tsc -v && next build",
"start": "PORT=$PORT NODE_ENV=production node --optimize_for_size --max_old_space_size=920 --gc_interval=100 server.js",
"start:local": "NODE_ENV=production next start -p 4001",
"test": "jest --config=jest.config.js",
"test:coverage": "yarn test --verbose --coverage",
"test:ci": "yarn run coverage -- --ci --maxWorkers=2 --reporters=default --reporters=jest-junit",
"lint": "eslint './{src,pages}/**/*.{ts,tsx}'",
"clean": "rm -rf 'dist' && rm -rf '.next'",
"generate:graphqlcodegen": "graphql-codegen",
"inspector:validate": "graphql-inspector validate src/graphql/_generated-hooks.tsx src/graphql/_generated-schema.graphql --require ts-node/register",
"inspector:coverage": "graphql-inspector coverage src/graphql/_generated-hooks.tsx src/graphql/_generated-schema.graphql --require ts-node/register",
"snapshots": "percy exec -- node test/visual-regression/index.js"
},
"resolutions": {
"graphql": "14.5.8"
},
"dependencies": {
"@apollo/react-hooks": "3.1.3",
"@apollo/react-ssr": "3.1.3",
"@apollo/react-testing": "3.1.3",
"@mpth/react-in-view": "1.0.1",
"@mpth/react-no-ssr": "1.0.0",
"@types/react": "16.9.11",
"@zeit/next-css": "1.0.1",
"@zeit/next-sass": "1.0.1",
"apollo-cache-inmemory": "1.6.3",
"apollo-client": "2.6.4",
"apollo-link": "1.2.13",
"apollo-link-batch-http": "1.2.13",
"apollo-link-error": "1.1.12",
"apollo-link-http": "1.5.16",
"apollo-utilities": "1.3.2",
"classnames": "2.2.6",
"express": "4.17.1",
"graphql": "14.5.8",
"graphql-tag": "2.10.1",
"isomorphic-unfetch": "3.0.0",
"next": "9.1.3",
"node-sass": "7.0.0",
"prettier": "1.19.1",
"prop-types": "15.7.2",
"react": "16.11.0",
"react-content-loader": "4.3.3",
"react-dom": "16.11.0",
"react-intersection-observer": "8.25.1",
"ts-node": "8.4.1",
"typescript": "3.7.2",
"webpack": "4.41.2"
},
"devDependencies": {
"@graphql-codegen/add": "1.8.3",
"@graphql-codegen/cli": "1.8.3",
"@graphql-codegen/fragment-matcher": "1.8.3",
"@graphql-codegen/schema-ast": "1.8.3",
"@graphql-codegen/time": "1.8.3",
"@graphql-codegen/typescript-operations": "1.8.3",
"@graphql-codegen/typescript-react-apollo": "1.8.3",
"@graphql-inspector/cli": "1.26.0",
"@testing-library/jest-dom": "4.2.3",
"@testing-library/react": "9.3.2",
"@testing-library/react-hooks": "3.2.1",
"@types/jest": "24.0.22",
"babel-eslint": "10.0.3",
"babel-jest": "24.9.0",
"dts-css-modules-loader": "1.0.1",
"eslint": "6.6.0",
"eslint-config-airbnb": "18.0.1",
"eslint-config-prettier": "6.5.0",
"eslint-plugin-graphql": "^3.0.3",
"eslint-plugin-import": "2.18.2",
"eslint-plugin-jsx-a11y": "6.2.3",
"eslint-plugin-prettier": "3.1.1",
"eslint-plugin-react": "7.16.0",
"eslint-plugin-react-hooks": "2.2.0",
"identity-obj-proxy": "3.0.0",
"jest": "24.9.0",
"lint-staged": "9.4.2",
"mq-polyfill": "1.1.8",
"react-test-renderer": "16.11.0",
"ts-jest": "24.1.0"
}
}