-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
79 lines (79 loc) · 2.42 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
71
72
73
74
75
76
77
78
79
{
"name": "quinci",
"description": "Self-hosted, minimal GitHub CI server",
"version": "0.9.6",
"bin": "dist/cli.js",
"main": "dist/index.js",
"license": "MIT",
"repository": "suchipi/quinci",
"bugs": "https://github.com/suchipi/quinci/issues",
"author": "Suchipi <[email protected]>",
"keywords": [
"CI",
"quincy",
"jenkins",
"teamcity",
"travis",
"circleci",
"continuous",
"integration",
"self-hosted",
"tests",
"lint",
"verify",
"github",
"app"
],
"dependencies": {
"ansi_up": "^3.0.0",
"cross-spawn": "^6.0.5",
"debug": "^3.1.0",
"express": "^4.16.3",
"github-app": "^4.0.1",
"github-webhook-handler": "^0.7.1",
"moment": "^2.22.2",
"promise-queue": "^2.2.5",
"react": "^16.4.1",
"react-dom": "^16.4.1",
"react-helmet-async": "^0.1.0-alpha",
"react-octicons": "^0.2.0",
"shelljs": "^0.8.1",
"signal-exit": "^3.0.2",
"strip-ansi": "^4.0.0",
"uid": "^0.0.2",
"yargs": "^11.0.0"
},
"devDependencies": {
"@babel/cli": "^7.0.0-beta.54",
"@babel/core": "^7.0.0-beta.54",
"@babel/plugin-proposal-class-properties": "^7.0.0-beta.54",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.0.0-beta.54",
"@babel/plugin-proposal-object-rest-spread": "^7.0.0-beta.54",
"@babel/plugin-transform-flow-strip-types": "^7.0.0-beta.54",
"@babel/preset-react": "^7.0.0-beta.54",
"@storybook/addon-actions": "^3.4.8",
"@storybook/addon-links": "^3.4.8",
"@storybook/addons": "^3.4.8",
"@storybook/react": "^3.4.8",
"babel-core": "^7.0.0-0",
"babel-eslint": "^8.2.6",
"babel-runtime": "^6.26.0",
"eslint": "^5.2.0",
"eslint-config-unobtrusive": "^1.2.2",
"eslint-plugin-flowtype": "^2.50.0",
"eslint-plugin-import": "^2.13.0",
"eslint-plugin-react": "^7.10.0",
"flow-bin": "^0.77.0",
"flow-typed": "^2.5.1",
"nodemon": "^1.18.3",
"prettier": "^1.13.7",
"rimraf": "^2.6.2"
},
"scripts": {
"build": "rimraf dist/* && babel src --out-dir dist && chmod +x dist/cli.js",
"build:watch": "babel --watch src --out-dir dist",
"start": "env DEBUG='quinci:*' nodemon --watch ./dist dist/cli.js -- --app-id 12403 --app-cert secrets/quinci.pem --webhook-secret-file secrets/webhook-secret.txt --web-url http://example.com",
"storybook": "start-storybook -p 6006 -s ./.storybook/public",
"build-storybook": "build-storybook"
}
}