-
Notifications
You must be signed in to change notification settings - Fork 32
/
Copy pathpackage.json
47 lines (47 loc) · 1.13 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
40
41
42
43
44
45
46
47
{
"name": "mean-boilerplate-ibm-cloud",
"version": "1.1.0",
"description": "MEAN (Mongo, Express, Angular, Node.js) Boilerplate for IBM Cloud",
"main": "server.js",
"scripts": {
"start": "node server.js",
"start-local": "node -r dotenv/config server.js",
"dev": "nodemon server.js"
},
"repository": {
"type": "git",
"url": "https://github.com/IBM-Cloud/nodejs-MEAN-stack.git"
},
"keywords": [
"Node.js",
"mongo",
"angular",
"express",
"javascript",
"boilerplate"
],
"author": "IBM Cloud",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/IBM-Cloud/nodejs-MEAN-stack/issues"
},
"homepage": "https://github.com/IBM-Cloud/nodejs-MEAN-stack",
"dependencies": {
"bcrypt": "5.0.1",
"body-parser": "1.19.0",
"cfenv": "1.2.4",
"connect-mongo": "4.6.0",
"cookie-parser": "1.4.6",
"dotenv": "10.0.0",
"express": "4.17.1",
"express-session": "1.17.2",
"express-validator": "6.13.0",
"mongoose": "6.0.14",
"passport": "0.5.0",
"passport-local": "1.0.0"
},
"devDependencies": {},
"engines": {
"node": ">=14"
}
}