-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 2.81 KB
/
package.json
File metadata and controls
89 lines (89 loc) · 2.81 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "imdb-clone-api",
"version": "1.0.0",
"description": "This is the IMDB clone using Mongo Express Node Jwt and adapting Clean Architecture",
"main": "index.js",
"scripts": {
"prestart": "set DEBUG=imdb-clone-api,imdb-clone-api:* & babel-node ./drivers/startMessage.js",
"start": "npm-run-all --parallel open:src lint:watch test:watch",
"open:src": "set DEBUG=imdb-clone-api,imdb-clone-api:* & babel-node ./drivers/webserver/server.js",
"lint": "esw --color",
"lint:watch": "npm run lint -- --watch",
"localtunnel": "lt --port 3000",
"share": "npm-run-all --parallel open:src localtunnel",
"test": "mocha --recursive --reporter spec test/testSetup.js \"{,!(node_modules)/**}/*.test.js\"",
"test:watch" : "npm run test -- --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/akshayjoyinfo/imdb-clone-node-express-mongo.git"
},
"keywords": [
"node",
"mongodb",
"jwt",
"express"
],
"author": "Akshay P Joy | https://akshayjoyinfo.github.io/me/#/about",
"license": "ISC",
"bugs": {
"url": "https://github.com/akshayjoyinfo/imdb-clone-node-express-mongo/issues"
},
"homepage": "https://github.com/akshayjoyinfo/imdb-clone-node-express-mongo#readme",
"dependencies": {
"@babel/preset-env": "^7.7.1",
"@hapi/joi": "^15.0.3",
"@hapi/joi-date": "^1.3.0",
"bcryptjs": "^2.4.3",
"body-parser": "^1.19.0",
"debug": "^4.1.1",
"dotenv": "^8.2.0",
"express-jwt": "^5.3.1",
"jsonwebtoken": "^8.5.1",
"mongoose": "^5.7.7",
"morgan": "^1.9.1",
"nodemon": "^1.19.4",
"swagger-jsdoc": "^3.4.0",
"swagger-ui-express": "^4.1.2",
"validate.js": "^0.13.1",
"yargs-parser": "^16.0.0"
},
"devDependencies": {
"@babel/core": "^7.7.2",
"@babel/node": "^7.7.0",
"@babel/plugin-proposal-object-rest-spread": "^7.6.2",
"@babel/register": "^7.7.0",
"babel-eslint": "^10.0.3",
"babel-loader": "^8.0.6",
"babel-preset-latest": "^6.24.1",
"chai": "^4.2.0",
"chalk": "^2.4.2",
"cheerio": "^1.0.0-rc.3",
"compression": "^1.7.4",
"cross-env": "^6.0.3",
"css-loader": "^3.2.0",
"eslint": "^6.6.0",
"eslint-plugin-import": "^2.18.2",
"eslint-watch": "^6.0.1",
"express": "^4.17.1",
"extract-text-webpack-plugin": "^3.0.2",
"html-webpack-plugin": "^3.2.0",
"jsdom": "^15.2.0",
"json-schema-faker": "^0.5.0-rc23",
"json-server": "^0.15.1",
"localtunnel-https": "^1.10.1",
"mocha": "^6.2.2",
"nock": "^11.7.0",
"npm-run-all": "^4.1.5",
"nsp": "^3.2.1",
"numeral": "^2.0.6",
"open": "^7.0.0",
"rimraf": "^3.0.0",
"style-loader": "^1.0.0",
"surge": "^0.21.3",
"webpack": "^4.41.2",
"webpack-dev-middleware": "^3.7.2",
"webpack-hot-middleware": "^2.25.0",
"webpack-md5-hash": "0.0.6"
}
}