-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.12 KB
/
Copy pathpackage.json
File metadata and controls
73 lines (73 loc) · 2.12 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
{
"name": "@aventum/server",
"version": "1.1.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "cross-env NODE_ENV=production node index.js",
"start:dev": "cross-env NODE_ENV=development node index.js",
"start:test": "cross-env NODE_ENV=test node index.js",
"start:dev:nodemon": "cross-env NODE_ENV=development nodemon --inspect --ignore content/ --ignore locales/ index.js",
"lint": "eslint . --ext .js",
"lint:fix": "eslint . --ext .js --fix"
},
"author": {
"name": "Mohammed Al-Mahdawi",
"email": "mohammed@al-mahdawi.com",
"url": "https://al-mahdawi.com"
},
"license": "MIT",
"dependencies": {
"@aventum/hooks": "^1.0.5",
"@hapi/joi": "^17.1.0",
"adm-zip": "^0.4.13",
"bcryptjs": "^2.4.3",
"body-parser": "^1.18.3",
"cors": "^2.8.4",
"date-fns": "^2.9.0",
"dotenv-flow": "^3.2.0",
"express": "^4.16.3",
"fs-extra": "^8.1.0",
"git-url-parse": "^11.1.2",
"helmet": "^3.21.2",
"i18next": "^17.0.11",
"i18next-express-middleware": "^1.8.0",
"i18next-node-fs-backend": "^2.1.3",
"ioredis": "^4.2.0",
"jsonwebtoken": "^8.4.0",
"knex": "^0.21.1",
"lodash": "^4.17.15",
"mongodb": "^3.1.0",
"mongoose": "^5.3.12",
"multer": "^1.4.1",
"mysql": "^2.17.1",
"nodemailer": "^4.6.7",
"passport": "^0.4.0",
"passport-facebook": "^2.1.1",
"passport-google-oauth20": "^2.0.0",
"pg": "^8.0.3",
"randomatic": "^3.1.1",
"rate-limiter-flexible": "^1.1.6",
"request": "^2.87.0",
"request-promise": "^4.2.2",
"semver": "^7.3.4",
"tar": "^4.4.10",
"uuid": "^3.3.2",
"validate-npm-package-name": "^3.0.0",
"winston": "^3.3.3"
},
"devDependencies": {
"babel-eslint": "^10.0.3",
"cross-env": "^7.0.2",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.11.0",
"eslint-config-standard": "^14.1.0",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"nodemon": "^1.19.1",
"prettier": "^2.0.5"
}
}