-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.36 KB
/
Copy pathpackage.json
File metadata and controls
52 lines (52 loc) · 1.36 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
52
{
"name": "storybooks",
"version": "1.0.0",
"description": "App to show public and private stories",
"main": "app.js",
"scripts": {
"start": "cross-env NODE_ENV=production node app",
"dev": "cross-env NODE_ENV=development nodemon app",
"test": "mocha tests/index_test.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/AlfiePhillips/expressjs.git"
},
"keywords": [
"express"
],
"author": "Alfie Phillips",
"license": "MIT",
"bugs": {
"url": "https://github.com/AlfiePhillips/expressjs/issues"
},
"homepage": "https://github.com/AlfiePhillips/expressjs#readme",
"dependencies": {
"chalk": "^4.1.0",
"clear-console": "^1.1.0",
"connect-mongo": "^3.2.0",
"cookie-parser": "^1.4.5",
"cookie-session": "^1.4.0",
"csurf": "^1.11.0",
"date-and-time": "^1.0.0",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-handlebars": "^5.2.1",
"express-session": "^1.17.1",
"jshint": "^2.12.0",
"method-override": "^3.0.0",
"moment": "^2.29.1",
"mongoose": "^5.12.1",
"mongoose-findorcreate": "^3.0.0",
"morgan": "^1.10.0",
"passport": "^0.4.1",
"passport-github": "^1.1.0",
"passport-github2": "^0.1.12",
"passport-google-oauth20": "^2.0.0"
},
"devDependencies": {
"cross-env": "^7.0.3",
"mocha": "^8.3.2",
"nodemon": "^2.0.7"
}
}