Skip to content

package.json is not in JSON format on Tutorial setting up environment #675

@takuya-o

Description

@takuya-o

On Page: Setting up your local environment

I was following the Buildpack.io tutorial to create a sample application. I found that the package.json file is not in JSON format.

The content of the package.json file is as follows:

{
  name = "example-application"
}

This file should be written in JSON format. Specifically, the following points are problematic:

: is required after the property name.
Values need to be enclosed in double quotes.
The corrected package.json file is as follows:

JSON

{
  "name": "example-application"
}

Could you please update the tutorial documentation to fix this issue?

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions