-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
32 lines (32 loc) · 872 Bytes
/
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
{
"name": "planning-poker",
"private": true,
"description": "Planning poker",
"version": "1.0.0",
"license": "MIT",
"scripts": {
"build": "gatsby build",
"build:prefixed": "gatsby build --prefix-paths",
"develop": "gatsby develop",
"format": "prettier --write \"**/*.{js,jsx,ts,tsx,json,md}\"",
"start": "gatsby develop",
"serve": "gatsby serve",
"clean": "gatsby clean",
"test": "echo \"Write tests! -> https://gatsby.dev/unit-testing\" && exit 1"
},
"dependencies": {
"@supabase/supabase-js": "^1.25.1",
"cross-fetch": "^3.1.5",
"gatsby": "4.23",
"gatsby-plugin-netlify": "^5.0.1",
"nanoid": "^3.1.30",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-helmet": "^6.1.0",
"react-toastify": "^8.0.3",
"react-use": "^17.3.2"
},
"devDependencies": {
"prettier": "2.3.2"
}
}