-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 964 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 964 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
31
32
33
34
35
36
37
38
{
"author": "Jorge Méndez Ortega <jorge.mendez.ortega@gmail.com>",
"dependencies": {
"isomorphic-fetch": "2.2.1",
"next": "9.3.3",
"next-routes": "1.4.2",
"nprogress": "0.2.0",
"prop-types": "15.7.2",
"react": "16.12.0",
"react-dom": "16.12.0",
"slugify": "1.3.6"
},
"description": "Taller Basico de NextJS",
"devDependencies": {
"@babel/register": "7.8.3"
},
"keywords": [
"Next",
"Taller",
"WorkShop",
"JavaScript",
"React",
"Router"
],
"license": "MIT",
"main": "index.js",
"name": "workshop_next",
"repository": {
"type": "git",
"url": "git@GitHub:OrcaPracticas/workshop-next.git"
},
"scripts": {
"build": "next build",
"dev": "node ./run_server.js",
"start": "export NODE_ENV=production; node ./run_server.js"
},
"version": "1.0.0"
}