-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 882 Bytes
/
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
{
"name": "meetup-server",
"version": "0.0.1",
"main": "index.js",
"scripts": {
"start": "SET NODE_ENV=development & nodemon index.js",
"build": "babel -w --out-dir=dist ./server",
"clean": "rimraf dist",
"lint": "eslint src",
"lint:fix": "eslint --fix src"
},
"repository": "https://github.com/usama-ayub/meetup-server.git",
"author": "Usama Ayub",
"license": "MIT",
"dependencies": {
"axios": "^0.17.1",
"body-parser": "^1.17.2",
"express": "^4.15.4",
"jsonwebtoken": "^8.1.0",
"mongoose": "^4.13.4",
"morgan": "^1.8.2",
"passport": "^0.4.0",
"passport-jwt": "^3.0.1"
},
"devDependencies": {
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.6.1",
"eslint": "^4.11.0",
"eslint-config-equimper": "^2.2.1",
"nodemon": "^1.11.0",
"rimraf": "^2.6.2"
}
}