-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·72 lines (72 loc) · 2.04 KB
/
package.json
File metadata and controls
executable file
·72 lines (72 loc) · 2.04 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
67
68
69
70
71
72
{
"name": "stackoverflow-backend",
"version": "1.0.0",
"description": "e-commerce application",
"main": "index.js",
"engines": {
"node": "12.6.0"
},
"scripts": {
"start:dev": "nodemon --watch src --exec babel-node ./src/index.js",
"test": "NODE_ENV=test nyc mocha --require @babel/register ./src/tests/*.spec.js --timeout 20000 --exit",
"build": "NODE_ENV=production babel src -d dist --copy-files",
"start": "NODE_ENV=production node dist/index.js",
"test:watch": "jest --no-cache --detectOpenHandles --runInBand --watch",
"heroku-postbuild": "npm run build"
},
"keywords": [
"mongoose",
"nodejs",
"express",
"caching"
],
"dependencies": {
"@babel/polyfill": "^7.4.3",
"bcrypt": "^3.0.5",
"body-parser": "^1.18.3",
"chalk": "^2.4.2",
"cors": "^2.8.5",
"dotenv": "^7.0.0",
"express": "^4.17.1",
"@hapi/joi": "^15.1.0",
"jsonwebtoken": "^8.5.1",
"mongoose": "^5.7.3",
"morgan": "^1.9.1",
"nodemon": "^1.18.11",
"passport": "^0.4.0",
"passport-jwt": "^4.0.0",
"redis": "^2.8.0",
"@sendgrid/mail": "^6.4.0",
"winston": "^3.2.1"
},
"devDependencies": {
"@babel/cli": "^7.4.3",
"@babel/core": "^7.4.3",
"@babel/node": "^7.2.2",
"@babel/preset-env": "^7.4.3",
"chai": "^4.2.0",
"chai-http": "^4.2.1",
"eslint": "^5.3.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-prettier": "^4.1.0",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-prettier": "^3.0.1",
"eslint-plugin-react": "^7.12.4",
"jest": "^24.7.1",
"mocha": "^6.1.4",
"mocha-lcov-reporter": "^1.3.0",
"prettier": "^1.16.4",
"nyc": "^14.1.1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fire-cracker/stackoverflow-backend.git"
},
"author": "Oyedeji Peace",
"license": "ISC",
"bugs": {
"url": "https://github.com/fire-cracker/stackoverflow-backend/issues"
},
"homepage": "https://github.com/fire-cracker/stackoverflow-backend#readme"
}