-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.64 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.64 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
{
"name": "node-express-mongodb-mocha",
"version": "1.0.0",
"description": "Node.js + Express + Mongodb + Mocha Skeleton Application",
"main": "index.js",
"scripts": {
"start": "export NODE_ENV=dev NODE_CONFIG_DIR=./src/config/ && nodemon -w src --exec \"babel-node src/app.js --presets @babel/preset-env\"",
"test": "export NODE_ENV=test NODE_CONFIG_DIR=./src/config/ && mocha --timeout 10000 --require @babel/register ./src/test/*.js ",
"populatedb": "babel-node --presets es2015 ./node_modules/pow-mongodb-fixtures/bin/mongofixtures node-express-skeleton-dev ./src/test/fixtures"
},
"repository": {
"type": "git",
"url": "https://github.com/renjithkathirolil/node-api-skeleton"
},
"keywords": [
"REST",
"API",
"Node.js",
"wordlist"
],
"author": "Renjith Kathirolil",
"license": "ISC",
"bugs": {
"url": "https://github.com/renjithkathirolil/node-api-skeleton"
},
"homepage": "https://github.com/renjithkathirolil/node-api-skeleton",
"dependencies": {
"bcrypt": "^5.0.0",
"body-parser": "^1.19.0",
"config": "^3.2.0",
"express": "^4.16.4",
"jsonwebtoken": "^8.5.1",
"mongoose": "^5.6.4",
"mongoose-paginate": "^5.0.3",
"morgan": "^1.9.1",
"node-gyp": "^4.0.0",
"pow-mongodb-fixtures": "^0.14.0"
},
"devDependencies": {
"@babel/cli": "^7.5.0",
"@babel/core": "^7.5.4",
"@babel/node": "^7.5.0",
"@babel/preset-env": "^7.5.4",
"@babel/preset-es2017": "^7.0.0-beta.53",
"@babel/register": "^7.4.4",
"babel-preset-stage-0": "^6.24.1",
"chai": "^4.2.0",
"chai-http": "^4.3.0",
"mocha": "^6.1.4",
"nodemon": "^1.19.0"
}
}