-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
48 lines (48 loc) · 1.38 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
{
"name": "linkbin-mongoose",
"version": "1.0.0",
"description": "",
"main": "index.js",
"engines": {
"node": ">=8.9",
"npm": ">=3.10.0"
},
"engineStrict": true,
"scripts": {
"lint": "./node_modules/.bin/eslint .",
"start": "node server.js",
"dev": "nodemon server.js",
"test": "export NODE_ENV=test && mocha ./test/**/*.test.js",
"coverage": "babel-node node_modules/.bin/babel-istanbul cover ./node_modules/mocha/bin/_mocha --report lcovonly -- -R spec && cat ./coverage/lcov.info | ./node_modules/.bin/codacy-coverage && rm -rf ./coverage",
"prepush": "npm run lint"
},
"author": "Priyanka",
"license": "MIT",
"dependencies": {
"babel-cli": "^6.26.0",
"babel-istanbul": "^0.12.2",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.7.0",
"body-parser": "^1.18.3",
"codacy-coverage": "^3.4.0",
"dotenv": "^7.0.0",
"express": "^4.16.4",
"express-validator": "^5.3.1",
"log4js": "^4.1.0",
"mocha-lcov-reporter": "^1.3.0",
"mongodb": "^3.2.3",
"mongoose": "^5.5.2",
"supertest": "^4.0.2"
},
"devDependencies": {
"eslint": "^5.16.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-plugin-import": "^2.17.2",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-react": "^7.12.4",
"expect": "^24.7.1",
"istanbul": "^0.4.5",
"mocha": "^6.1.4",
"nodemon": "^1.18.11"
}
}