This repository has been archived by the owner on Mar 8, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathpackage.json
128 lines (128 loc) · 3.72 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
{
"version": "1.0.0",
"main": "index.js",
"engines": {
"node": "12.x"
},
"scripts": {
"dev": "next ./ -p 3000",
"prebuild": "node ./sitemap/createSitemap.js",
"build": "next build",
"now-build": "npm run validate",
"start": "next start -p 4000",
"test": "jest --config ./jest.config.json",
"test:watch": "npm run test -- --watch",
"lint": "eslint '**/*.js'",
"prevalidate": "npm run build",
"validate": "concurrently npm:test npm:lint",
"storybook": "start-storybook -s ./public -p 6006",
"build-storybook": "build-storybook"
},
"dependencies": {
"@apollo/react-hooks": "^4.0.0",
"@apollo/react-ssr": "^4.0.0",
"@auth0/nextjs-auth0": "^0.12.0",
"@loadable/component": "^5.15.0",
"@sentry/browser": "^6.4.1",
"@sentry/integrations": "^6.4.1",
"@sentry/node": "^6.4.1",
"@storybook/addon-knobs": "^6.2.9",
"@zeit/next-source-maps": "0.0.3",
"apollo-boost": "^0.4.9",
"apollo-link-batch-http": "^1.2.14",
"apollo-link-context": "^1.0.20",
"base64url": "^3.0.1",
"butter-toast": "^3.3.5",
"debug": "^4.3.1",
"dotenv": "^10.0.0",
"flat": "^5.0.2",
"formik": "^2.2.8",
"framer-motion": "^4.1.17",
"front-matter": "^4.0.2",
"google-map-react": "^2.1.9",
"graphql": "^15.5.0",
"html-react-parser": "^1.2.6",
"isomorphic-unfetch": "^3.1.0",
"js-cookie": "^2.2.1",
"lodash": "^4.17.21",
"logrocket": "^1.2.1",
"markdown-it": "^12.0.6",
"markdown-to-jsx": "^7.1.3",
"moment": "^2.29.1",
"next": "^10.2.3",
"next-seo": "^4.24.0",
"nprogress": "^0.2.0",
"pluralize": "^8.0.0",
"polished": "^4.1.2",
"prop-types": "^15.7.2",
"raw-loader": "^4.0.2",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-facebook": "^8.1.4",
"react-hotkeys": "^2.0.0",
"react-id-generator": "^3.0.1",
"react-imgix": "^9.1.2",
"react-scroll-parallax": "^2.4.0",
"react-select": "^4.3.1",
"react-twitch-embed-video": "^3.0.0",
"redux": "^4.1.0",
"sentry-testkit": "^3.3.2",
"styled-components": "5.3.0",
"styled-components-modifiers": "^1.2.5",
"styled-css-grid": "^1.2.1",
"uuid": "^8.3.2",
"webpack": "^5.37.1",
"yup": "^0.32.9"
},
"devDependencies": {
"@babel/core": "^7.14.3",
"@storybook/addon-actions": "^6.2.9",
"@storybook/addon-links": "^6.2.9",
"@storybook/addons": "^6.2.9",
"@storybook/react": "^6.2.9",
"all-contributors-cli": "^6.20.0",
"babel-eslint": "^10.1.0",
"babel-jest": "^27.0.1",
"babel-loader": "^8.2.2",
"babel-plugin-module-resolver": "^4.1.0",
"babel-plugin-styled-components": "^1.12.0",
"concurrently": "^6.2.0",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.6",
"eslint": "^7.27.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-prettier": "^8.3.0",
"eslint-loader": "^4.0.2",
"eslint-plugin-import": "^2.23.3",
"eslint-plugin-jest": "^24.3.6",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-react": "^7.23.2",
"eslint-plugin-react-hooks": "^4.2.0",
"fslightbox-react": "^1.6.2",
"glob": "^7.1.7",
"husky": "^4.3.8",
"jest": "^27.0.1",
"prettier-eslint": "^12.0.0"
},
"name": "that-website",
"author": "that conference",
"description": "THATConference.com",
"homepage": "https://www.thatconference.com",
"bugs": {
"url": "https://github.com/ThatConference/that-website/issues"
},
"license": "gpl-3.0",
"keywords": [
"node, web, nextjs, now, react"
],
"repository": {
"type": "git",
"url": "https://github.com/thatconference/that-website.git"
},
"husky": {
"hooks": {
"pre-push": "npm run validate"
}
}
}