-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.46 KB
/
Copy pathpackage.json
File metadata and controls
52 lines (52 loc) · 1.46 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": "hotspots",
"version": "0.0.1",
"engines": {
"node": ">= 7.6.0"
},
"scripts": {
"start": "node ./start.js",
"watch": "nodemon ./start.js --ignore public",
"dev": "concurrently \"npm run watch\" \"npm run assets\" --names \"💻,📦\"",
"assets": "webpack -w --display-max-modules 0"
},
"repository": "https://github.com/ajibs/hotspots.git",
"author": "Bolu Ajibawo <bolu.ajibawo@gmail.com>",
"license": "MIT",
"dependencies": {
"axios": "^0.16.2",
"bcrypt": "^1.0.3",
"body-parser": "^1.18.2",
"connect-flash": "^0.1.1",
"connect-mongo": "^2.0.0",
"cookie-parser": "^1.4.3",
"cssnano": "^3.10.0",
"csurf": "^1.9.0",
"dotenv": "^4.0.0",
"express": "^4.16.2",
"express-session": "^1.15.6",
"express-validator": "^4.2.1",
"helmet": "^3.8.2",
"mongoose": "^4.12.1",
"passport": "^0.4.0",
"passport-facebook": "^2.1.1",
"passport-google-oauth": "^1.0.0",
"passport-local": "^1.0.0",
"passport-twitter": "^1.0.4",
"path": "^0.12.7",
"pug": "^2.0.0-rc.4"
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-preset-env": "^1.6.0",
"concurrently": "^3.5.0",
"css-loader": "^0.28.7",
"eslint": "^4.8.0",
"eslint-config-airbnb-base": "^12.0.2",
"eslint-plugin-import": "^2.7.0",
"extract-text-webpack-plugin": "^3.0.1",
"optimize-css-assets-webpack-plugin": "^3.2.0",
"webpack": "^3.7.1"
}
}