forked from tolumide-ng/EPIC-Mail-Application
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.96 KB
/
Copy pathpackage.json
File metadata and controls
66 lines (66 loc) · 1.96 KB
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
61
62
63
64
65
66
{
"name": "epicmail",
"version": "1.0.0",
"description": "",
"main": "index.js",
"directories": {
"test": "test"
},
"scripts": {
"pretest": "npm run create-table-test",
"test": "cross-env NODE_ENV=test nyc --reporter=html mocha --require @babel/register --require babel-polyfill --exit && nyc report --timeout=20000",
"build": "npm run clean && babel ./server -d ./build -s",
"heroku-postbuild": "npm run build",
"start": "node ./build/server.js",
"clean": "rimraf ./build",
"create-table": "node ./db.js --exit",
"create-table-test": "cross-env NODE_ENV=test node ./db.js --exit",
"start-dev": "nodemon ./server/server.js --exec babel-node",
"coverage": "npm test && nyc report --reporter=text-lcov | coveralls"
},
"engines": {
"node": "10.15.3"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mosinmiloluwa01/EPIC-Mail-Application.git"
},
"author": "owoso mosinmiloluwa",
"license": "ISC",
"bugs": {
"url": "https://github.com/mosinmiloluwa01/EPIC-Mail-Application/issues"
},
"homepage": "https://github.com/mosinmiloluwa01/EPIC-Mail-Application#readme",
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.3.4",
"@babel/node": "^7.2.2",
"@babel/preset-env": "^7.3.4",
"chai": "^4.2.0",
"chai-http": "^4.2.1",
"coveralls": "^3.0.3",
"cross-env": "^5.2.0",
"eslint": "^5.15.1",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.16.0",
"mocha": "6.1.4",
"nyc": "^13.3.0",
"rimraf": "^2.6.3"
},
"dependencies": {
"@babel/polyfill": "^7.2.5",
"babel-polyfill": "^6.26.0",
"bcrypt": "^3.0.4",
"body-parser": "^1.18.3",
"cloudinary": "^1.14.0",
"cors": "^2.8.5",
"datauri": "^1.1.0",
"dotenv": "^6.2.0",
"express": "^4.16.4",
"jsonwebtoken": "^8.5.0",
"multer": "^1.4.1",
"pg": "^7.8.2",
"swagger-ui-express": "^4.0.2",
"validatorjs": "^3.15.1"
}
}