-
Notifications
You must be signed in to change notification settings - Fork 88
/
Copy pathpackage.json
58 lines (58 loc) · 1.64 KB
/
package.json
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
{
"name": "zc-company-files",
"version": "1.0.0",
"description": "Zuri Chat ~ Company Files Management Plug-In",
"main": "server.js",
"scripts": {
"build": "cd frontend && npm run build",
"dev": "nodemon .",
"install-setup": "npm install && cd frontend && npm install",
"lint:backend": "eslint -c .eslintrc.js backend/** --ext .js",
"lint:backend:fix": "npm run lint:backend -- --fix",
"prepare": "husky install",
"start": "node server.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/zurichat/zc_plugin_company_files.git"
},
"author": "Team Galileo devs",
"license": "MIT",
"bugs": {
"url": "https://github.com/zurichat/zc_plugin_company_files/issues"
},
"homepage": "https://github.com/zurichat/zc_plugin_company_files#readme",
"dependencies": {
"colors": "^1.4.0",
"compression": "^1.7.4",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"express-async-errors": "^3.1.1",
"express-fileupload": "^1.2.1",
"joi": "^17.4.2",
"mongoose": "^5.13.7"
},
"devDependencies": {
"@commitlint/cli": "^13.1.0",
"@commitlint/config-conventional": "^13.1.0",
"eslint": "^7.32.0",
"eslint-config-google": "^0.14.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-prettier": "^3.4.1",
"husky": "^7.0.2",
"lint-staged": "^11.1.2",
"morgan": "^1.10.0",
"nodemon": "^2.0.12",
"prettier": "^2.3.2"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"lint-staged": {
"*.js": "npm run lint:backend:fix"
}
}