-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.19 KB
/
Copy pathpackage.json
File metadata and controls
51 lines (51 loc) · 1.19 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
41
42
43
44
45
46
47
48
49
50
51
{
"name": "node-js-getting-started",
"version": "0.3.0",
"description": "A sample Node.js app using Express 4",
"engines": {
"node": "16.x"
},
"main": "index.js",
"scripts": {
"start": "cross-env NODE_ENV=production node ./index.js",
"start:dev": "cross-env NODE_ENV=development nodemon ./index.js",
"lint": "eslint **/*.js",
"lint:fix": "eslint --fix **/*.js",
"test": "node test.js"
},
"dependencies": {
"bcrypt": "^5.0.1",
"cool-ascii-faces": "^1.3.4",
"cors": "^2.8.5",
"cross-env": "^7.0.3",
"dotenv": "^16.0.1",
"ejs": "^3.1.8",
"express": "^4.18.1",
"http-errors": "^1.6.2",
"joi": "^17.6.0",
"jsonwebtoken": "^8.5.1",
"mongoose": "^6.4.3",
"morgan": "^1.10.0",
"multer": "^1.4.5-lts.1",
"nanoid": "^4.0.0",
"node-fetch": "^2.6.1",
"nodemailer": "^6.7.7",
"nodemon": "^2.0.19",
"swagger-ui-express": "^4.4.0",
"uuid": "^8.3.2"
},
"devDependencies": {
"got": "^11.3.0",
"tape": "^4.7.0"
},
"repository": {
"type": "git",
"url": "https://github.com/heroku/node-js-getting-started"
},
"keywords": [
"node",
"heroku",
"express"
],
"license": "MIT"
}