-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathpackage.json
70 lines (70 loc) · 2.2 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
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "git2gus",
"private": true,
"version": "0.1.0",
"description": "Keeps Github issues in sync with Salesforce Agile Accelerator work items.",
"keywords": [],
"dependencies": {
"@elastic/elasticsearch": "^7.9.1",
"@octokit/auth-app": "^3.0.0",
"@octokit/rest": "^18.2.0",
"@octokit/webhooks": "^5.3.2",
"@sailshq/connect-redis": "^3.2.1",
"@sailshq/lodash": "^3.10.3",
"@sailshq/socket.io-redis": "^5.2.0",
"async": "^3.2.2",
"dotenv": "^6.1.0",
"express-winston": "^4.0.3",
"grunt": "1.5.3",
"jest": "^24.1.0",
"jsforce": "^1.9.3",
"lodash": "^4.17.11",
"logdna-winston": "^2.3.1",
"remark": "^12.0.0",
"remark-html": "13.0.2",
"remark-parse": "^8.0.0",
"require-all": "^3.0.0",
"sails": "^1.0.2",
"sails-hook-grunt": "^3.0.2",
"sails-hook-orm": "^2.0.0-16",
"sails-hook-sockets": "^1.4.0",
"sails-postgresql": "^1.0.1",
"smee-client": "^1.1.0",
"winston": "^3.8.2",
"winston-elasticsearch": "^0.11.0"
},
"devDependencies": {
"@sailshq/eslint": "^4.19.3",
"eslint": "^5.13.0",
"eslint-config-prettier": "^4.1.0",
"pre-push": "^0.1.1",
"prettier": "^1.16.4",
"typescript": "^3.5.1"
},
"scripts": {
"start": "NODE_ENV=production node app.js",
"dev": "NODE_ENV=development node app.js",
"test": "jest --verbose",
"lint": "eslint . --max-warnings=0 --report-unused-disable-directives && echo '✔ Your .js files look good.'",
"custom-tests": "echo \"(No other custom tests yet.)\" && echo",
"prettier": "prettier --check \"**/*.{js,ts,json,md,ejs}\"",
"prettier:fix": "prettier --write \"**/*.{js,ts,json,md,ejs}\"",
"typecheck": "tsc"
},
"main": "app.js",
"repository": {
"type": "git",
"url": "git://github.com/salesforce/git2gus.git"
},
"author": "reinierguerra",
"license": "",
"engines": {
"node": ">=18.x",
"yarn": ">=1.22.19"
},
"pre-push": [
"prettier",
"lint",
"test"
]
}