-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
131 lines (131 loc) · 3.32 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
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
{
"name": "focustas.org",
"version": "0.1.0",
"private": true,
"scripts": {
"build": "next build",
"start": "next dev",
"test": "xo --extension=js --extension=ts --extension=tsx",
"report-coverage": "nyc report --reporter=lcov > coverage.lcov && codecov"
},
"dependencies": {
"@apollo/react-hooks": "^3.1.3",
"@babel/core": "^7.8.4",
"@emotion/core": "^10.0.27",
"@reach/visually-hidden": "^0.8.2",
"@react-google-maps/api": "^1.9.7",
"@sanity/block-content-to-react": "^2.0.7",
"@sanity/client": "^1.148.1",
"@sanity/image-url": "^0.140.17",
"@theme-ui/match-media": "^0.3.1",
"@theme-ui/style-guide": "^0.3.0",
"apollo-cache-inmemory": "^1.6.5",
"apollo-client": "^2.6.8",
"apollo-link-context": "^1.0.19",
"apollo-link-http": "^1.5.16",
"apollo-server-micro": "^2.10.1",
"autotrack": "^2.4.1",
"dotenv": "^8.2.0",
"execa": "^4.0.0",
"graphql": "^14.6.0",
"graphql-tag": "^2.10.3",
"isomorphic-unfetch": "^3.0.0",
"lodash": "^4.17.15",
"micro-cors": "^0.1.1",
"next": "^9.2.1",
"polished": "^3.4.4",
"prop-types": "^15.7.2",
"react": "^16.12.0",
"react-apollo": "^3.1.3",
"react-dom": "^16.12.0",
"react-scroll": "^1.7.16",
"theme-ui": "^0.3.1",
"typeface-raleway": "0.0.75",
"typescript": "^3.7.5",
"typography": "^0.16.19"
},
"devDependencies": {
"@graphql-codegen/add": "^1.12.2",
"@graphql-codegen/cli": "^1.12.2",
"@graphql-codegen/fragment-matcher": "^1.12.2",
"@graphql-codegen/typescript": "^1.12.2",
"@graphql-codegen/typescript-operations": "^1.12.2",
"@graphql-codegen/typescript-react-apollo": "^1.12.2",
"@graphql-codegen/typescript-resolvers": "^1.12.2",
"@next/bundle-analyzer": "^9.2.1",
"@styled-system/css": "^5.1.4",
"@types/google.analytics": "0.0.40",
"@types/lodash": "^4.14.149",
"@types/react": "^16.9.19",
"@types/react-scroll": "^1.5.4",
"@typescript-eslint/eslint-plugin": "^2.19.2",
"@typescript-eslint/parser": "^2.19.2",
"codecov": "^3.6.5",
"eslint-config-xo": "^0.29.0",
"eslint-config-xo-react": "^0.23.0",
"eslint-config-xo-typescript": "^0.26.0",
"eslint-plugin-react": "^7.18.3",
"eslint-plugin-react-hooks": "^2.3.0",
"gulp": "^4.0.2",
"gulp-execa": "^2.0.0",
"gulp-nodemon": "^2.4.2",
"husky": "^4.2.3",
"lint-staged": "^10.0.7",
"nyc": "^15.0.0",
"type-fest": "^0.10.0",
"xo": "^0.26.1"
},
"xo": {
"space": true,
"prettier": true,
"overrides": [
{
"files": [
"**/*.ts",
"**/*.tsx"
],
"extends": [
"xo-react",
"xo-typescript/space"
]
},
{
"files": "src/**/*.tsx",
"envs": [
"browser"
],
"rules": {
"import/no-unassigned-import": [
"error",
{
"allow": [
"**/*.css"
]
}
],
"react/jsx-no-useless-fragment": [
"off"
]
}
}
]
},
"eslint": {
"settings": {
"react": {
"version": "16.12"
}
}
},
"lint-staged": {
"*.{js}": [
"npx xo --fix",
"git add"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}