-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
82 lines (82 loc) · 2.35 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
{
"name": "calendz-api",
"version": "1.6.0",
"description": "calendz's backend api",
"private": true,
"main": "app.js",
"scripts": {
"start": "node ./src/app.js",
"dev": "./node_modules/.bin/nodemon ./src/app.js",
"test": "NODE_ENV=test ./node_modules/.bin/mocha ./src/tests --recursive --exit",
"test:mock": "NODE_ENV=mock node ./src/mock/seedData.js",
"test:coverage": "NODE_ENV=test nyc --reporter=html --reporter=text -x '**/tests/*' ./node_modules/.bin/mocha ./src/tests --recursive --exit",
"test:coveralls": "nyc report --reporter=text-lcov | coveralls",
"lint": "./node_modules/.bin/eslint ./",
"lint:fix": "./node_modules/.bin/eslint ./ --fix"
},
"husky": {
"hooks": {
"pre-commit": "npm run test:mock && npm test && npm run lint"
}
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/calendz/calendz-api.git"
},
"keywords": [],
"author": "calendz",
"license": "ISC",
"bugs": {
"url": "https://github.com/calendz/calendz-api/issues"
},
"homepage": "https://github.com/calendz/calendz-api#readme",
"dependencies": {
"bcryptjs": "^2.4.3",
"body-parser": "^1.18.3",
"compression": "^1.7.3",
"convict": "^6.0.0",
"convict-format-with-validator": "^6.0.0",
"cookie-parser": "^1.4.5",
"cors": "^2.8.5",
"debug": "^4.2.0",
"dotenv": "^8.2.0",
"express": "^4.16.4",
"express-async-handler": "^1.1.4",
"faker": "^5.1.0",
"helmet": "^4.1.1",
"jsonwebtoken": "^8.5.0",
"mailgun-js": "^0.22.0",
"method-override": "^3.0.0",
"mongoose": "^5.10.9",
"morgan": "^1.10.0",
"multer": "^1.4.1",
"npm": "^8.19.2",
"sib-api-v3-sdk": "^8.4.2",
"util": "^0.12.3",
"uuid": "^3.4.0",
"winston": "^3.3.3"
},
"devDependencies": {
"chai": "^4.2.0",
"commitizen": "^4.2.1",
"coveralls": "^3.1.0",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^7.11.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-mocha": "^8.0.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"husky": "^4.3.0",
"mocha": "^8.1.3",
"nodemon": "^2.0.6",
"nyc": "^15.1.0",
"supertest": "^5.0.0"
}
}