forked from ThatConference/that-website
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
114 lines (114 loc) · 3.21 KB
/
package.json
File metadata and controls
114 lines (114 loc) · 3.21 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
{
"version": "1.0.0",
"main": "index.js",
"engines": {
"node": "^10"
},
"scripts": {
"dev": "next ./ -p 3001",
"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"
},
"dependencies": {
"@apollo/react-hooks": "^3.1.3",
"@apollo/react-ssr": "^3.1.3",
"@auth0/nextjs-auth0": "^0.10.0",
"@sentry/browser": "^5.12.4",
"@sentry/integrations": "^5.12.4",
"@sentry/node": "^5.12.4",
"@zeit/next-source-maps": "0.0.3",
"apollo-boost": "^0.4.7",
"apollo-link-batch-http": "^1.2.13",
"apollo-link-context": "^1.0.19",
"base64url": "^3.0.1",
"butter-toast": "^3.3.5",
"debug": "^4.1.1",
"dotenv": "^8.2.0",
"flat": "^5.0.0",
"formik": "^2.1.4",
"front-matter": "^3.1.0",
"google-map-react": "^1.1.6",
"graphql": "^14.6.0",
"html-react-parser": "^0.10.1",
"husky": "^4.2.3",
"isomorphic-unfetch": "^3.0.0",
"js-cookie": "^2.2.1",
"lodash": "^4.17.15",
"markdown-it": "^10.0.0",
"markdown-to-jsx": "^6.11.0",
"moment": "^2.24.0",
"next": "^9.2.2",
"next-seo": "^4.1.0",
"nprogress": "^0.2.0",
"pluralize": "^8.0.0",
"polished": "^3.4.4",
"prop-types": "^15.7.2",
"raw-loader": "^4.0.0",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"react-facebook": "^8.1.4",
"react-id-generator": "^3.0.0",
"react-imgix": "^9.0.1",
"react-scroll-parallax": "^2.3.1",
"react-select": "^3.0.8",
"redux": "^4.0.5",
"sentry-testkit": "^3.2.1",
"styled-components": "^4.4.1",
"styled-components-modifiers": "^1.2.5",
"styled-css-grid": "^1.2.1",
"webpack": "^4.41.6",
"yup": "^0.28.1"
},
"devDependencies": {
"@babel/core": "^7.8.4",
"babel-eslint": "^10.0.3",
"babel-jest": "^24.9.0",
"babel-plugin-module-resolver": "^4.0.0",
"babel-plugin-styled-components": "^1.10.7",
"concurrently": "^5.1.0",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.2",
"eslint": "^6.8.0",
"eslint-config-airbnb": "^18.0.1",
"eslint-config-prettier": "^6.10.0",
"eslint-loader": "^3.0.3",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-jest": "^23.7.0",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-react": "^7.18.3",
"eslint-plugin-react-hooks": "^2.4.0",
"fslightbox-react": "^1.4.9",
"glob": "^7.1.6",
"jest": "^24.9.0",
"now": "^16.7.3",
"prettier-eslint": "^9.0.1"
},
"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"
}
}
}