-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
85 lines (85 loc) · 2.25 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
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
{
"name": "nodejs-mongoose-es7-rest-api",
"version": "1.0.0",
"description": "A rest api boilerplate using nodejs,mongoose,jwt,es8,joi,nodemon,yarn with testing and code coverage",
"main": "index.js",
"private": false,
"dependencies": {
"aws-sdk": "^2.481.0",
"bcrypt": "^5.0.0",
"body-parser": "^1.18.3",
"debug": "^4.1.1",
"dotenv": "^6.2.0",
"express": "^4.16.4",
"express-jwt": "^5.3.1",
"helmet": "^4.6.0",
"joi": "^14.3.1",
"jsonwebtoken": "^8.4.0",
"mongoose": "^5.13.3",
"multer": "^1.4.1",
"multer-s3": "^2.9.0",
"mysql": "^2.16.0"
},
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.2.2",
"@babel/node": "^7.2.2",
"@babel/preset-env": "^7.3.1",
"@babel/register": "^7.0.0",
"chai": "^4.2.0",
"chai-http": "^4.2.1",
"eslint": "^5.13.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-node": "^8.0.1",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-standard": "^4.0.0",
"husky": "^1.3.1",
"mocha": "^9.0.2",
"nodemon": "^2.0.12",
"nyc": "^15.1.0"
},
"scripts": {
"test": "APP_ENVIROMENT=test ./node_modules/.bin/nyc ./node_modules/.bin/mocha --exit",
"dev": "npm run lint && DEBUG=app nodemon --exec babel-node index.js",
"build": "rm -rf dist && npm run lint && ./node_modules/.bin/babel . --out-dir dist --ignore node_modules && cp .env dist",
"serve": "node dist/index.js",
"lint": "./node_modules/.bin/eslint 'index.js' 'server/**/*.js' 'server/app.js' ",
"precommit": "npm run lint",
"prepush": "npm run lint",
"test:coverage": "nyc --reporter=lcov yarn test"
},
"repository": {
"type": "git",
"url": "https://github.com/vibhasfl/nodejs-mongoose-es8-rest-api.git"
},
"keywords": [
"express",
"node",
"node.js",
"mongodb",
"mongoose",
"es6",
"es7",
"es8",
"es2017",
"mocha",
"chai",
"istanbul",
"nyc",
"eslint",
"standard",
"jsonwebtoken",
"jwt",
"REST",
"API",
"boilerplate",
"starter project template",
"babel 7",
"nodemon",
"integration tests",
"joi validation"
],
"author": "Vibhas Bhingarde <vibhas.fl@gmail.com>",
"license": "MIT"
}