-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
35 lines (35 loc) · 897 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
34
35
{
"name": "server",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"dependencies": {
"babel-cli": "^6.24.0",
"babel-core": "^6.24.0",
"bcrypt-nodejs": "^0.0.3",
"body-parser": "^1.17.1",
"cors": "^2.8.1",
"express": "^4.15.2",
"jwt-simple": "^0.5.1",
"mongoose": "^4.9.0",
"morgan": "^1.8.1",
"passport": "^0.3.2",
"passport-jwt": "^2.2.1",
"passport-local": "^1.0.0"
},
"scripts": {
"server": "nodemon server.js",
"client": "nodemon start-client.js",
"start": "concurrently \"npm run server\" \"npm run client \"",
"lint": "eslint ."
},
"devDependencies": {
"babel-eslint": "^7.1.1",
"concurrently": "^3.4.0",
"eslint": "^3.18.0",
"eslint-config-airbnb": "^14.1.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^4.0.0",
"eslint-plugin-react": "^6.10.2"
}
}