Hi everyone and merry xmas!
I just started with the tutorials to learn everything. When I try to add a script to the package.json as describe in one of the tutorials Im getting a problem. What am I doing wrong?
package.json including the script (see at the end):
{
"name": "simple-nodejs",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "",
"license": "ISC",
"dependencies": {
"express": "^4.18.2",
"moralis": "^2.10.3"
}
}
"scripts": {
"start": "node index.js"
},
The problem message Im getting is:
End of file expected.
Im sure there is an easy answer for it and sorry for the noob question. Thanks!!!