-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
38 lines (38 loc) · 904 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
33
34
35
36
37
38
{
"name": "coffeecast",
"version": "1.0.0",
"description": "Simple podcast player",
"main": "index.js",
"scripts": {
"dev": "node server.js",
"build": "next build",
"export": "next export",
"start": "NODE_ENV=production node server.js",
"deploy": "npm run build && npm run export"
},
"repository": {
"type": "git",
"url": "git+https://github.com/D4v1d98Ru1z/CoffeeCast.git"
},
"keywords": [
"podcast",
"next",
"react",
"JavaScript"
],
"author": "David Ruiz",
"license": "MIT",
"bugs": {
"url": "https://github.com/D4v1d98Ru1z/CoffeeCast/issues"
},
"homepage": "https://github.com/D4v1d98Ru1z/CoffeeCast#readme",
"dependencies": {
"isomorphic-fetch": "^2.2.1",
"next": "^8.0.3",
"next-routes": "^1.4.2",
"nprogress": "^0.2.0",
"react": "^16.8.3",
"react-dom": "^16.8.3",
"slugify": "^1.3.4"
}
}