-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
52 lines (52 loc) · 1.47 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
48
49
50
51
52
{
"name": "nodejs-project-template",
"version": "0.0.0",
"private": true,
"scripts": {
"start": "concurrently \"npm run watch\" \"npm run assets\" --names \"💻,📦\" --prefix name",
"watch": "nodemon ./start.js --ignore public/",
"assets": "webpack -w --display-max-modules 0",
"stop": "killall -9 node"
},
"dependencies": {
"axios": "0.15.3",
"body-parser": "^1.18.3",
"connect-ensure-login": "^0.1.1",
"connect-flash": "0.1.1",
"connect-mongo": "1.3.2",
"cookie-parser": "~1.4.3",
"debug": "~2.6.9",
"dotenv": "4.0.0",
"es6-promisify": "5.0.0",
"express": "~4.16.0",
"express-session": "^1.15.6",
"express-validator": "3.1.2",
"fs": "0.0.1-security",
"http-errors": "~1.6.2",
"https": "^1.0.0",
"moment": "^2.22.2",
"mongoose": "5.1.0",
"mongoose-mongodb-errors": "0.0.2",
"morgan": "~1.9.0",
"passport": "0.3.2",
"passport-facebook": "^2.1.1",
"passport-local-mongoose": "4.0.0",
"pug": "2.0.0-beta11",
"validator": "7.0.0"
},
"devDependencies": {
"autoprefixer": "6.7.7",
"babel-core": "6.24.0",
"babel-loader": "6.4.0",
"babel-preset-env": "^1.6.0",
"concurrently": "3.4.0",
"eslint": "^5.6.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.1",
"eslint-plugin-react": "^7.11.1",
"extract-text-webpack-plugin": "2.1.0",
"nodemon": "^1.18.3",
"webpack": "2.2.1"
}
}