-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 2.51 KB
/
package.json
File metadata and controls
85 lines (85 loc) · 2.51 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
{
"name": "VivaDoc",
"version": "0.0.1",
"description": "Documentation that lives.",
"author": "Arie Milner <amilner42@gmail.com>",
"license": "ISC",
"repository": "https://github.com/amilner42/viva-doc",
"keywords": [],
"scripts": {
"build": "tsc -p tsconfig.json",
"lint": "standard **/*.ts --fix",
"test": "jest",
"test:watch": "jest --watch --notify --notifyMode=change --coverage",
"github-app-start": "probot run ./lib/src/github-app/index.js",
"github-app-grammar:standard-comments": "cd src/github-app/languages/standard-comments/ && antlr4ts -visitor ./*.g4",
"api-start": "node ./lib/src/api/app.js",
"forever-list": "forever list",
"forever-stop": "forever stop",
"forever-stopall": "forever stopall",
"forever-github-app-start": "forever start ./node_modules/probot/bin/probot-run.js ./lib/src/github-app/index.js",
"forever-api-start": "forever start ./lib/src/api/app.js",
"forever-restartall": "forever restartall"
},
"dependencies": {
"@types/body-parser": "^1.17.0",
"@types/cors": "^2.8.5",
"@types/express": "^4.17.0",
"@types/express-session": "^1.15.0",
"@types/mongoose": "^5.5.0",
"@types/nock": "^9.3.0",
"@types/passport": "^0.3.2",
"@types/passport-github": "^1.1.0",
"@types/ramda": "^0.25.0",
"antlr4ts": "^0.5.0-alpha.2",
"body-parser": "^1.17.0",
"connect-mongo": "^2.0.3",
"cookie-parser": "^1.4.3",
"cors": "^2.8.5",
"errorhandler": "1.4.3",
"express": "^4.17.0",
"express-session": "^1.15.0",
"forever": "^1.0.0",
"github-api": "^3.0.0",
"github-app": "^4.0.1",
"method-override": "2.3.5",
"methods": "1.1.2",
"mongoose": "^5.5.7",
"mongoose-find-or-create": "^1.3.1",
"mongoose-unique-validator": "^2.0.3",
"morgan": "1.7.0",
"nock": "^10.0.0",
"passport": "0.3.2",
"passport-github": "^1.1.0",
"probot": "^8.0.0-beta.5",
"ramda": "^0.25.0",
"typescript": "^2.9.2"
},
"devDependencies": {
"@types/jest": "^23.1.5",
"@types/node": "^10.5.2",
"antlr4ts-cli": "^0.5.0-alpha.2",
"eslint-plugin-typescript": "^0.12.0",
"jest": "^23.4.0",
"nodemon": "^1.17.2",
"smee-client": "^1.0.2",
"standard": "^10.0.3",
"ts-jest": "^23.0.0",
"typescript-eslint-parser": "^18.0.0"
},
"engines": {
"node": ">= 8.3.0"
},
"standard": {
"parser": "typescript-eslint-parser",
"env": [
"jest"
],
"plugins": [
"typescript"
]
},
"jest": {
"testEnvironment": "node"
}
}