-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
executable file
·60 lines (60 loc) · 1.23 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
53
54
55
56
57
58
59
60
{
"name": "billsplit-app",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "node server.js",
"test": "mocha"
},
"author": "",
"license": "ISC",
"dependencies": {
"bcrypt-as-promised": "^1.1.0",
"bcrypt-nodejs": "0.0.3",
"bcryptjs": "^2.4.3",
"body-parser": "^1.17.1",
"clipboard": "^1.6.1",
"colors": "^1.1.2",
"cors": "^2.8.3",
"dotenv": "^4.0.0",
"express": "^4.15.2",
"faker": "^4.1.0",
"mongoose": "^4.8.5",
"morgan": "^1.8.1",
"passport": "^0.3.2",
"passport-http": "^0.3.0"
},
"devDependencies": {
"colors": "^1.1.2",
"eslint": "^3.16.1",
"eslint-plugin-import": "^2.2.0",
"chai": "^3.5.0",
"chai-http": "^3.0.0",
"eslint-config-airbnb": "^14.1.0",
"mocha": "^2.5.3"
},
"repository": {
"type": "git",
"url": "git://github.com/debelopumento/billsplit-app.git"
},
"eslintConfig": {
"parser": "babel-eslint",
"plugins": [
"import"
],
"extends": [
"airbnb"
],
"settings": {
"import/parser": "babel-eslint",
"import/resolve": {
"moduleDirectory": [
"node_modules",
"src",
"./"
]
}
}
}
}