-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.59 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
{
"name": "Epic_Mail",
"version": "1.0.0",
"description": "Epic_Mail bootcamp challenge",
"main": "app.js",
"scripts": {
"start": "nodemon --exec babel-node app.js",
"test": "nyc --repoter=html --repoter=text mocha --require @babel/register --require babel-polyfill test/*.js --exit",
"cover": "nyc --reporter=text npm test",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"lint": "eslint ./"
},
"repository": {
"type": "git",
"url": "git+https://github.com/alainburindi/Epic_Mail.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/alainburindi/Epic_Mail/issues"
},
"homepage": "https://github.com/alainburindi/Epic_Mail#readme",
"devDependencies": {
"eslint": "^5.15.1",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-react": "^7.12.4"
},
"dependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.3.4",
"@babel/node": "^7.2.2",
"@babel/preset-env": "^7.3.4",
"@babel/register": "^7.0.0",
"babel-core": "^6.26.3",
"babel-polyfill": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"bcrypt": "^3.0.4",
"chai": "^4.2.0",
"chai-http": "^4.2.1",
"coveralls": "^3.0.3",
"dotenv": "^7.0.0",
"express": "^4.16.4",
"joi": "^14.3.1",
"jsonwebtoken": "^8.5.0",
"mocha": "^6.0.2",
"nodemon": "^1.18.10",
"nyc": "^13.3.0",
"pg": "^7.10.0"
},
"engines": {
"node": "10.6.0",
"npm": "6.1.0"
}
}