-
Notifications
You must be signed in to change notification settings - Fork 63
/
package.json
47 lines (43 loc) · 2.06 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
{
"name": "zc_plugin_deadlines",
"version": "1.0.0",
"description": "The reminder plugin is an external feature that gives users the ability to set tasks and reminders on the whatever they are setting. It comes in handy when you and your teammate wants to prioritize doing a certain task or feature over a certain time frame. Users are able to assign tasks to a teammate or an entire channel by navigating directly to the plugin, input the necessary details for that reminder and the teammates are notified accordingly. It aims to serve the entire Zuri Chat.",
"main": "index.js",
"scripts": {
"lint": "eslint -c .eslintrc.js \"src/**\" --fix",
"prepare": "husky install backend/.husky && husky install frontend/.husky",
"install:backend": "cd backend && yarn install",
"install:frontend": "cd frontend && yarn install",
"test": "cross-env NODE_ENV=production mocha ./tests/**/*.spec.js -r @babel/register --timeout=100000 --exit",
"test:watch": "cross-env NODE_ENV=test mocha ./tests/**/*.spec.js -r @babel/register --timeout=100000 --watch --exit",
"start:backend": "cd backend && yarn start:backend",
"start:frontend": "cd frontend && npm start",
"start:root": "cd root && npm start",
"dev:frontend": "npm-run-all --parallel start:frontend start:root",
"holoInstall": "yarn install && yarn install:backend && yarn install:frontend",
"dev": "npm-run-all --parallel start:backend dev:frontend",
"clean": "rimraf dist",
"build": "cd frontend && yarn build && cd .. && yarn clean && babel src -d dist --source-maps --copy-files",
"start": "node ./dist/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/zurichat/zc_plugin_deadlines.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/zurichat/zc_plugin_deadlines/issues"
},
"devDependencies": {
"husky": "^7.0.2",
"npm-run-all": "^4.1.5"
},
"husky": {
"hooks": {
"pre-commit": "yarn exec pretty-quick --staged && yarn:lint"
}
},
"homepage": "https://github.com/zurichat/zc_plugin_deadlines#readme"
}