-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
102 lines (102 loc) · 2.84 KB
/
package.json
File metadata and controls
102 lines (102 loc) · 2.84 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
{
"name": "application_name",
"version": "2.0.0",
"description": "Small description",
"main": "index.js",
"license": "UNLICENSED",
"engines": {
"node": "<=14.15.0",
"npm": "<=7.19.0",
"yarn": "<=1.22.10"
},
"os": [
"linux"
],
"scripts": {
"staging": "nodemon ./src/index.js",
"eslint:check": "eslint 'src/**/*.{js,jsx}' --fix",
"format": "prettier \"./src/**/*.js\" --write",
"start": "node src/index.js",
"console:staging": "nodemon --experimental-repl-await ./src/console.js",
"console:prod": "node --experimental-repl-await ./src/console.js"
},
"keywords": [],
"author": "FoodZilla",
"dependencies": {
"@sentry/node": "6.7.1",
"@sentry/tracing": "6.2.5",
"bcryptjs": "2.4.3",
"body-parser": "1.19.0",
"commitlint": "12.1.1",
"cookie-parser": "1.4.5",
"coralogix-logger": "1.1.28",
"cors": "2.8.5",
"dotenv": "8.2.0",
"express": "4.17.1",
"express-http-context": "1.2.4",
"express-rate-limit": "5.2.6",
"fs": "0.0.1-security",
"helmet": "4.2.0",
"js-logger": "1.6.1",
"moment": "2.29.1",
"mongodb": "3.6.5",
"mongoose": "5.12.3",
"nodemon": "2.0.4",
"repl": "0.1.3",
"request-ip": "2.1.3"
},
"devDependencies": {
"@babel/core": "7.13.10",
"@babel/preset-env": "7.13.10",
"@commitlint/cli": "12.1.1",
"@commitlint/config-conventional": "12.1.1",
"@shelf/jest-mongodb": "1.2.4",
"@types/cors": "2.8.6",
"@types/express": "4.17.2",
"@types/factory-girl": "5.0.4",
"@types/jest": "26.0.20",
"@types/jwt-simple": "0.5.33",
"@types/lodash": "4.14.149",
"@types/mongoose": "5.5.32",
"@types/throng": "5.0.0",
"babel-eslint": "10.1.0",
"babel-jest": "26.6.3",
"commitizen": "4.2.3",
"cz-conventional-changelog": "3.3.0",
"eslint": "7.9.0",
"eslint-config-airbnb-base": "14.2.0",
"eslint-config-prettier": "6.4.0",
"eslint-plugin-import": "2.22.0",
"eslint-plugin-jest": "22.6.4",
"eslint-plugin-node": "9.1.0",
"eslint-plugin-prettier": "3.1.1",
"eslint-plugin-promise": "4.1.1",
"eslint-plugin-standard": "4.0.0",
"husky": "3.0.9",
"lint": "0.7.0",
"lint-staged": "10.4.0",
"madge": "4.0.2",
"prettier": "2.2.1",
"pretty-quick": "3.1.0"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"prepare-commit-msg": "exec < /dev/tty && git cz --hook || true",
"pre-commit": "lint-staged && madge --circular ./",
"pre-push": "lint-staged && madge --circular ./"
}
},
"lint-staged": {
"*.js": [
"yarn format",
"eslint --fix",
"git add ."
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}