generated from LostTechSoftware/bk_template
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
114 lines (114 loc) · 3.27 KB
/
package.json
File metadata and controls
114 lines (114 loc) · 3.27 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
103
104
105
106
107
108
109
110
111
112
113
114
{
"name": "bk_backoffice",
"version": "1.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.ts",
"eslint:check": "eslint 'src/**/*.{ts,tsx}' --fix",
"format": "prettier \"./src/**/*.ts\" --write",
"build": "sucrase ./src -d ./dist --transforms typescript,imports",
"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.11.0",
"@sentry/tracing": "6.11.0",
"@types/mongodb": "4.0.7",
"aws-sdk": "2.975.0",
"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",
"express-validator": "6.12.0",
"fs": "0.0.1-security",
"helmet": "4.2.0",
"js-logger": "1.6.1",
"jsonwebtoken": "^8.5.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",
"sqs-consumer": "5.5.0",
"sucrase": "3.20.1",
"typescript": "4.3.5"
},
"devDependencies": {
"@babel/core": "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.6",
"@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",
"@typescript-eslint/eslint-plugin": "4.29.3",
"@typescript-eslint/parser": "4.29.3",
"babel-eslint": "10.1.0",
"babel-jest": "26.6.3",
"commitizen": "4.2.3",
"cz-conventional-changelog": "3.3.0",
"eslint": "7.32.0",
"eslint-config-airbnb-base": "14.2.0",
"eslint-config-prettier": "8.3.0",
"eslint-config-standard": "16.0.3",
"eslint-plugin-import": "2.24.1",
"eslint-plugin-jest": "22.6.4",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-prettier": "3.4.1",
"eslint-plugin-promise": "5.1.0",
"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.3.2",
"pretty-quick": "3.1.0",
"ts-node-dev": "1.0.0-pre.49",
"tsconfig-paths": "3.9.0",
"typescript": "3.9.5"
},
"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"
}
}
}