forked from calendz/calendz-api
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·76 lines (76 loc) · 2.34 KB
/
package.json
File metadata and controls
executable file
·76 lines (76 loc) · 2.34 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "calendz-api",
"version": "1.7.0-SNAPSHOT",
"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"
},
"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.20.2",
"compression": "^1.7.4",
"convict": "^6.2.4",
"convict-format-with-validator": "^6.2.0",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"debug": "^4.3.4",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"express-async-handler": "^1.2.0",
"faker": "^6.6.6",
"helmet": "^7.0.0",
"jsonwebtoken": "^9.0.1",
"method-override": "^3.0.0",
"mongoose": "^7.4.5",
"morgan": "^1.10.0",
"multer": "^1.4.1",
"nodemailer": "^6.9.4",
"nodemailer-express-handlebars": "^6.1.0",
"sib-api-v3-sdk": "^8.5.0",
"util": "^0.12.5",
"winston": "^3.10.0"
},
"devDependencies": {
"chai": "^4.3.8",
"commitizen": "^4.3.0",
"coveralls": "^3.1.1",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.48.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-mocha": "^10.1.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-standard": "^4.1.0",
"husky": "^8.0.3",
"mocha": "^10.2.0",
"nodemon": "^3.0.1",
"nyc": "^15.1.0",
"supertest": "^6.3.3"
}
}