forked from ashlynbaum/minimum-viable-ceremonies
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
74 lines (74 loc) · 2.35 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
{
"name": "minimum-viable-ceremonies",
"private": true,
"description": "Minimum Viable Ceremonies app",
"version": "0.1.0",
"author": "James Kiesel <[email protected]>",
"dependencies": {
"@datapunt/matomo-tracker-react": "^0.1.5",
"@firebase/app": "^0.6.2",
"@firebase/auth": "^0.14.7",
"@firebase/database": "^0.6.1",
"@firebase/functions": "^0.4.49",
"browser-monads": "^1.0.0",
"debounce-promise": "^3.1.2",
"emoji-mart": "^3.0.0",
"firebase": "^7.14.3",
"gatsby": "^2.20.25",
"gatsby-image": "^2.3.4",
"gatsby-plugin-create-client-paths": "^2.3.3",
"gatsby-plugin-firebase": "^0.2.0-beta.4",
"gatsby-plugin-manifest": "^2.3.5",
"gatsby-plugin-offline": "^3.1.4",
"gatsby-plugin-react-helmet": "^3.2.4",
"gatsby-plugin-react-svg": "^3.0.0",
"gatsby-plugin-sass": "^2.2.4",
"gatsby-plugin-sharp": "^2.5.6",
"gatsby-plugin-web-font-loader": "^1.0.4",
"gatsby-source-filesystem": "^2.2.4",
"gatsby-transformer-sharp": "^2.4.6",
"i18next": "^19.4.4",
"node-sass": "^4.14.0",
"prop-types": "^15.7.2",
"random-words": "^1.1.1",
"react": "^16.12.0",
"react-beautiful-dnd": "^13.0.0",
"react-cookie": "^4.0.3",
"react-dom": "^16.12.0",
"react-dom-confetti": "^0.2.0",
"react-freshchat": "minimum-viable-ceremonies/react-freshchat#master",
"react-helmet": "^6.0.0",
"react-i18next": "^11.4.0",
"react-markdown": "^4.3.1",
"react-modal": "^3.11.2",
"react-select": "^3.1.0"
},
"devDependencies": {
"cypress": "^4.12.1",
"cypress-firebase": "^1.4.3",
"firebase-admin": "^9.0.0",
"prettier": "2.0.4",
"start-server-and-test": "^1.11.2",
"tailwindcss": "^1.3.5"
},
"keywords": [
"gatsby"
],
"license": "MIT",
"scripts": {
"build": "gatsby build",
"develop": "gatsby develop",
"format": "prettier --write \"**/*.{js,jsx,json,md}\"",
"start": "npm run develop",
"serve": "gatsby serve",
"clean": "gatsby clean",
"cypress:open": "cypress open",
"cypress:run": "cypress run",
"test": "CYPRESS=true start-server-and-test develop http://localhost:8000 cypress:open",
"test:ci": "CYPRESS=true start-server-and-test develop http://localhost:8000 cypress:run"
},
"repository": {
"type": "git",
"url": "https://github.com/gdpelican/minimum-viable-ceremonies"
}
}