-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.03 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.03 KB
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
40
{
"name": "nodejs-notes-app",
"version": "2.0.0",
"description": "Notes App",
"main": "index.js",
"scripts": {
"dev": "nodemon src/index.js --exec babel-node",
"start": "node src/index.js",
"build": "babel src -d dist",
"copyfiles": "ncp src/views dist/views && npc src/public dist/public"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"bcryptjs": "^2.4.3",
"connect-flash": "^0.1.1",
"connect-mongo": "^4.4.0",
"express": "^4.17.1",
"express-handlebars": "^5.2.1",
"express-session": "^1.17.1",
"method-override": "^3.0.0",
"mongoose": "^5.12.0",
"morgan": "^1.10.0",
"passport": "^0.4.1",
"passport-local": "^1.0.0"
},
"devDependencies": {
"@babel/cli": "^7.13.10",
"@babel/core": "^7.13.10",
"@babel/node": "^7.13.10",
"@babel/plugin-transform-runtime": "^7.13.10",
"@babel/preset-env": "^7.13.10",
"dotenv": "^8.2.0",
"handlebars": "^4.7.7",
"ncp": "^2.0.0",
"nodemon": "^2.0.7",
"rimraf": "^3.0.2"
}
}