-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
81 lines (81 loc) · 1.99 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
80
81
{
"name": "calypso-docker-branches",
"version": "0.1.0",
"description": "",
"main": "src/index.js",
"devDependencies": {
"prettier": "npm:[email protected]"
},
"dependencies": {
"@types/bunyan": "^1.8.4",
"@types/dockerode": "^2.5.5",
"@types/express": "^4.16.0",
"@types/express-session": "^1.15.10",
"@types/forever-monitor": "^1.7.3",
"@types/fs-extra": "^8.0.0",
"@types/http-proxy": "^1.16.2",
"@types/jest": "^24.0.0",
"@types/lodash": "^4.14.116",
"@types/node": "^10.12.2",
"@types/node-fetch": "^2.1.2",
"@types/nodegit": "^0.26.2",
"@types/react": "^16.4.8",
"@types/react-dom": "^16.0.7",
"@types/strip-ansi": "^3.0.0",
"@types/striptags": "^3.1.1",
"@types/tar-fs": "^1.16.1",
"@types/useragent": "^2.1.1",
"bunyan": "^1.8.12",
"docker-parse-image": "^3.0.1",
"dockerode": "^3.0.0",
"express": "^4.16.3",
"express-session": "^1.15.6",
"forever-monitor": "^1.7.1",
"fs-extra": "^8.0.0",
"get-port": "^5.1.1",
"hot-shots": "^6.3.0",
"http-proxy": "^1.17.0",
"jest": "^24.0.0",
"lodash": "^4.17.10",
"node-fetch": "^2.2.1",
"nodegit": "^0.26.5",
"react": "^16.4.2",
"react-dom": "^16.4.2",
"strip-ansi": "^5.0.0",
"striptags": "^3.1.1",
"tar-fs": "^2.0.0",
"ts-jest": "^24.0.0",
"typescript": "^3.1.6",
"useragent": "^2.3.0"
},
"scripts": {
"test": "jest --testURL=http://localhost/",
"start": "yarn run build-ts && yarn run serve",
"serve": "node build/index.js",
"serve:debug": "node build/index.js | bunyan",
"serve:forever": "node build/daemon.js",
"build-ts": "tsc",
"watch-ts": "tsc -w",
"reformat-files": "./node_modules/.bin/prettier --write \"**/*.{ts,tsx,json}\""
},
"repository": {
"type": "git",
"url": "https://github.com/Automattic/dserve"
},
"author": "samouri",
"license": "MIT",
"jest": {
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.tsx?$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
]
}
}