-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.58 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.58 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
{
"name": "grapp_server",
"version": "0.0.1",
"description": "",
"main": "app.js",
"dependencies": {
"agenda": "^2.0.2",
"bcryptjs": "^2.4.3",
"body-parser": "^1.18.3",
"crypto": "^1.0.1",
"date-fns": "^1.29.0",
"expo-server-sdk": "^2.4.0",
"express": "^4.16.3",
"jsonwebtoken": "^8.2.1",
"lodash": "^4.17.11",
"mongoose": "^5.4.19",
"mongoose-paginate": "^5.0.3",
"multer": "^1.3.1",
"node-fetch": "^2.3.0",
"nodemailer": "^6.4.2",
"path": "^0.12.7",
"sharp": "^0.24.0",
"sinon-mongoose": "^2.2.1"
},
"devDependencies": {
"chai": "^4.1.2",
"coveralls": "^3.0.9",
"eslint": "^5.16.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-config-prettier": "^6.10.0",
"eslint-plugin-import": "^2.17.2",
"eslint-utils": ">=1.4.1",
"husky": "^4.2.3",
"lint-staged": "^10.0.8",
"inquirer": "^7.0.5",
"mocha": "^5.2.0",
"mocha-lcov-reporter": "^1.3.0",
"nodemon": "^1.19.0",
"nyc": "^13.3.0",
"prettier": "1.19.1",
"sinon": "^5.1.1"
},
"scripts": {
"test": "nyc mocha --recursive",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"code-format": "npx eslint \"./**/*.js\" --fix && npx prettier \"./**/*.js\" --write",
"code-format-check": "npx eslint \"./**/*.js\" && npx prettier \"./**/*.js\" --check",
"start": "nodemon app.js"
},
"author": "",
"license": "ISC",
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": "eslint --cache --fix",
"*.{js,css,md}": "prettier --write"
}
}