forked from GDG-NewOrleans/devfest-nola-2019
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 814 Bytes
/
Copy pathpackage.json
File metadata and controls
30 lines (30 loc) · 814 Bytes
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
{
"name": "devfest-nola-2019",
"version": "1.0.0",
"description": "DevFest GDG Jaén 2021 website",
"private": true,
"scripts": {
"dev": "next",
"build": "next build",
"start": "next start",
"export": "npm run build && next export",
"deploy": "npm run export && touch out/.nojekyll && cp CNAME out/CNAME && gh-pages -d out --dotfiles",
"data": "node convertData.js"
},
"keywords": [],
"author": "Sia Karamalegos",
"license": "MIT",
"dependencies": {
"@zeit/next-css": "^1.0.1",
"next": "^8.1.0",
"react": "^16.14.0",
"react-dom": "^16.14.0",
"react-onclickoutside": "^6.12.0",
"styled-components": "^4.4.1"
},
"devDependencies": {
"@svgr/webpack": "^4.3.3",
"babel-plugin-styled-components": "^1.13.3",
"js-yaml": "^3.14.1"
}
}