-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
51 lines (51 loc) · 1.25 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
{
"name": "es6-node-starter",
"version": "1.0.0",
"description": "ES6 Node Starter Kit with built in rest api authentication",
"scripts": {
"dev": "nodemon --exec babel-node src/index.js",
"build": "rm -rf dist && babel src --out-dir dist",
"start": "PORT=8080 pm2 start dist/index.js",
"lint": "eslint src"
},
"keywords": [
"ES6",
"ES7",
"ExpressJS",
"MongoDB",
"Authentication",
"Starter kit",
"Airbnb Eslint",
"Nodemon",
"Babel"
],
"repository": {
"type": "git",
"url": "git+https://github.com/DimitriMikadze/es6-node-starter"
},
"author": "Dimtiri Mikadze",
"license": "MIT",
"devDependencies": {
"babel-cli": "^6.9.0",
"babel-preset-es2015": "^6.9.0",
"eslint": "^2.11.1",
"eslint-config-airbnb": "^9.0.1",
"eslint-plugin-import": "^1.8.1",
"eslint-plugin-jsx-a11y": "^1.3.0",
"eslint-plugin-react": "^5.1.1",
"nodemon": "^1.9.2"
},
"dependencies": {
"bcrypt-nodejs": "0.0.3",
"body-parser": "^1.15.1",
"compression": "^1.6.2",
"cors": "^2.7.1",
"express": "^4.13.4",
"jwt-simple": "^0.5.0",
"mongoose": "^4.4.16",
"morgan": "^1.7.0",
"passport": "^0.3.2",
"passport-jwt": "^2.0.0",
"passport-local": "^1.0.0"
}
}