-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.05 KB
/
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
39
{
"name": "notesapi",
"version": "0.0.1",
"description": "",
"main": "index.js",
"scripts": {
"dev": "nodemon src/index.js --exec babel-node",
"build": "npm install && babel src -d dist && ncp src/views dist/views && ncp src/public dist/public",
"start": "node dist/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/feeldiac/notesapi.git"
},
"keywords": [],
"author": "Fernando Diaz <feeldiac@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/feeldiac/notesapi/issues"
},
"homepage": "https://github.com/feeldiac/notesapi#readme",
"devDependencies": {
"@babel/cli": "^7.19.3",
"@babel/core": "^7.19.3",
"@babel/node": "^7.19.1",
"@babel/plugin-transform-runtime": "^7.19.1",
"@babel/preset-env": "^7.19.3",
"ncp": "^2.0.0",
"nodemon": "^2.0.20"
},
"dependencies": {
"@babel/runtime": "^7.19.4",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"express-handlebars": "^6.0.6",
"mongoose": "^6.6.5",
"morgan": "^1.10.0"
}
}