-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
141 lines (141 loc) · 4.47 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
132
133
134
135
136
137
138
139
140
141
{
"name": "atlas",
"author": "Jilles Cardoso <[email protected]> (https://github.com/jillesmc)",
"license": "MIT",
"version": "1.0.0",
"scripts": {
"dev": "NODE_OPTIONS='--inspect' next dev",
"build": "yarn test-all && next build",
"start": "next start",
"type-check": "tsc --pretty --noEmit",
"format": "prettier --write src/**/*.{ts,tsx}",
"lint": "eslint 'src/**/*.{ts,tsx}' --fix",
"test": "jest --passWithNoTests",
"test-all": "yarn lint && yarn type-check && yarn test",
"clean": "npx del-cli .next/",
"analyze": "yarn clean && cross-env ANALYZE=true yarn build"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"pre-push": "yarn run type-check"
}
},
"lint-staged": {
"*.@(ts|tsx)": [
"yarn lint",
"yarn format"
]
},
"jest": {
"testEnvironment": "node"
},
"dependencies": {
"@analytics/segment": "^0.5.1",
"@fortawesome/fontawesome-svg-core": "^1.2.30",
"@fortawesome/free-solid-svg-icons": "^5.14.0",
"@fortawesome/react-fontawesome": "^0.1.11",
"@happykit/flags": "^0.3.0",
"@radix-ui/react-accordion": "^0.0.1",
"@radix-ui/react-dropdown-menu": "^0.0.4",
"@radix-ui/react-icons": "^1.0.1",
"@radix-ui/react-tooltip": "^0.0.9",
"@reach/menu-button": "^0.11.2",
"@sentry/browser": "^5.28.0",
"@sentry/integrations": "^5.28.0",
"@sentry/node": "^5.28.0",
"@sentry/tracing": "^5.28.0",
"@sentry/webpack-plugin": "^1.13.0",
"@stitches/react": "^0.0.3-canary.4",
"@unly/utils": "^1.0.3",
"@unly/utils-simple-logger": "^1.4.0",
"@vercel/fetch": "^6.1.0",
"@zeit/next-source-maps": "0.0.4-canary.1",
"algoliasearch": "^4.5.1",
"algoliasearch-helper": "^3.2.2",
"analytics": "^0.5.5",
"body-scroll-lock": "^3.1.5",
"datocms-client": "3.3.0",
"deepmerge": "^4.2.2",
"domain-browser": "^4.18.0",
"html-tag": "^2.0.0",
"lodash": "^4.17.21",
"next": "^10.1.2",
"next-compose-plugins": "^2.2.0",
"next-react-svg": "1.1.2",
"next-seo": "^4.7.3",
"next-transpile-modules": "^6.3.0",
"nextjs-progressbar": "^0.0.5",
"nookies": "^2.5.0",
"qs": "^6.9.4",
"querystring": "^0.2.0",
"react": "^17.0.1",
"react-autosuggest": "^10.0.2",
"react-compound-slider": "^2.5.0",
"react-datocms": "^1.2.6",
"react-dom": "^17.0.1",
"react-hamburger-menu": "^1.2.1",
"react-headroom": "^3.0.0",
"react-hook-form": "^6.13.1",
"react-instantsearch": "^6.8.2",
"react-instantsearch-dom": "^6.8.2",
"react-lazyload": "^3.1.0",
"react-loading-skeleton": "^2.1.1",
"react-mega-menu": "^1.0.1",
"react-multi-carousel": "^2.5.5",
"react-multilevel-sidebar": "^1.0.4",
"react-responsive": "^8.2.0",
"react-responsive-carousel": "^3.2.10",
"react-sticky-nav": "^4.0.6",
"recompose": "^0.30.0",
"stitches-reset": "^1.0.0",
"stitches-utils": "^1.1.0",
"swr": "^0.3.9",
"tslib": "^2.1.0",
"use-analytics": "^0.0.5",
"use-dark-mode": "^2.3.1",
"use-persisted-state": "^0.3.3",
"winston": "^3.3.3"
},
"devDependencies": {
"@next/bundle-analyzer": "^10.1.2",
"@testing-library/react": "^10.0.1",
"@types/algoliasearch": "^3.34.10",
"@types/body-scroll-lock": "^2.6.1",
"@types/graphql": "^14.5.0",
"@types/jest": "^25.1.4",
"@types/json-stringify-safe": "^5.0.0",
"@types/lodash": "^4.14.168",
"@types/node": "^13.9.5",
"@types/react": "^16.9.55",
"@types/react-dom": "^16.9.9",
"@types/segment-analytics": "^0.0.33",
"@types/webpack": "^4.41.22",
"@typescript-eslint/eslint-plugin": "^4.6.1",
"@typescript-eslint/parser": "^4.6.1",
"@welldone-software/why-did-you-render": "^4.3.2",
"babel-jest": "^25.2.3",
"cross-env": "^7.0.2",
"eslint": "^7.2.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-prettier": "^6.10.1",
"eslint-import-resolver-typescript": "^2.0.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-import": "^2.21.2",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.21.5",
"eslint-plugin-react-hooks": "^4.2.0",
"eslint-plugin-simple-import-sort": "^5.0.3",
"husky": "^4.2.3",
"jest": "^25.2.3",
"jest-watch-typeahead": "^0.5.0",
"lint-staged": "^10.0.10",
"prettier": "^2.0.2",
"prop-types": "^15.7.2",
"typescript": "^4.0.3",
"typewriter": "^7.3.0",
"webpack": "^5.28.0"
},
"sideEffects": false
}