This repository was archived by the owner on Apr 5, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.46 KB
/
package.json
File metadata and controls
82 lines (82 loc) · 2.46 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
77
78
79
80
81
82
{
"name": "cms-nodejs",
"version": "1.0.0",
"description": "cms",
"main": "src/index.js",
"license": "MIT",
"scripts": {
"start": "pm2 start ecosystem.config.json --no-daemon",
"dev": "cross-env NODE_ENV=development nodemon src/index.js",
"test": "jest",
"test:watch": "jest -i --watchAll",
"make-docs":"apidoc -i src/routes/ -o docs/",
"coverage": "jest -i --coverage",
"coverage:coveralls": "jest -i --coverage --coverageReporters=text-lcov | coveralls",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"prettier": "prettier --check **/*.js",
"prettier:fix": "prettier --write **/*.js",
"docker:prod": "docker-compose -f docker-compose.yml -f docker-compose.prod.yml up",
"docker:dev": "docker-compose -f docker-compose.yml -f docker-compose.dev.yml up",
"docker:test": "docker-compose -f docker-compose.yml -f docker-compose.test.yml up"
},
"keywords": [
"cms"
],
"dependencies": {
"@hapi/joi": "^17.1.1",
"apidoc": "^0.27.1",
"bcryptjs": "^2.4.3",
"compression": "^1.7.4",
"cors": "^2.8.5",
"cross-env": "^7.0.3",
"dotenv": "^9.0.0",
"express": "^4.17.1",
"express-mongo-sanitize": "^2.0.2",
"express-rate-limit": "^5.2.6",
"helmet": "^4.6.0",
"http-status": "^1.5.0",
"jsonwebtoken": "^8.5.1",
"lodash": "^4.17.21",
"moment": "^2.29.1",
"mongoose": "^5.12.7",
"morgan": "^1.10.0",
"nodemailer": "^6.6.1",
"passport": "^0.4.1",
"passport-jwt": "^4.0.0",
"pm2": "^4.5.6",
"validator": "^13.7.0",
"winston": "^3.3.3",
"xss-clean": "^0.1.1"
},
"devDependencies": {
"coveralls": "^3.1.0",
"eslint": "^7.26.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^24.3.6",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-security": "^1.4.0",
"faker": "^5.5.3",
"husky": "^6.0.0",
"jest": "^26.6.3",
"lint-staged": "^11.0.0",
"node-mocks-http": "^1.10.1",
"nodemon": "^2.0.7",
"prettier": "^2.2.1",
"supertest": "^6.1.3"
},
"directories": {
"test": "tests"
},
"repository": {
"type": "git",
"url": "git+https://github.com/alphaolomi/cms-nodejs.git"
},
"author": "Alpha Olomi <alphaolomi@gmail.com> (http://alphaolomi.me)",
"bugs": {
"url": "https://github.com/alphaolomi/cms-nodejs/issues"
},
"homepage": "https://github.com/alphaolomi/cms-nodejs#readme"
}