UNPKG
@webloop/create-dev-project
Version:
latest (1.0.1)
1.0.1
1.0.0
This is a simple command line interface to install packages
@webloop/create-dev-project
/
templates
/
next-js
/
package.json
17 lines
(16 loc)
•
282 B
JSON
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{
"name"
:
"next-js"
,
"version"
:
"0.1.0"
,
"private"
:
true
,
"scripts"
:
{
"dev"
:
"next dev"
,
"build"
:
"next build"
,
"start"
:
"next start"
,
"lint"
:
"next lint"
}
,
"dependencies"
:
{
"next"
:
"13.4.7"
,
"react"
:
"18.2.0"
,
"react-dom"
:
"18.2.0"
}
}