forked from caprover/caprover
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 2.02 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
{
"name": "caprover",
"version": "0.0.0",
"private": true,
"scripts": {
"start": "node ./bin/www",
"dev": "npm run build && sudo ./dev-scripts/dev-reset-service.sh",
"clean": "npm run build && sudo ./dev-scripts/dev-clean-run-as-dev.sh",
"tslint": "tslint -c tslint.json -p tsconfig.json",
"build": "echo 'RECOMPILING' && npx madge --circular --extensions ts ./ && rm -rf ./built && npx tsc",
"test": "npm run build && jest"
},
"dependencies": {
"@types/bcryptjs": "^2.4.2",
"@types/configstore": "^4.0.0",
"@types/cookie-parser": "^1.4.1",
"@types/dockerode": "^2.5.20",
"@types/ejs": "^2.6.3",
"@types/express": "^4.17.0",
"@types/fs-extra": "^8.0.0",
"@types/http-proxy": "^1.17.0",
"@types/jest": "^24.0.17",
"@types/js-base64": "^2.3.1",
"@types/jsonwebtoken": "^8.3.3",
"@types/morgan": "^1.7.36",
"@types/multer": "^1.3.8",
"@types/on-finished": "^2.3.1",
"@types/request": "^2.48.2",
"@types/require-from-string": "^1.2.0",
"@types/serve-favicon": "^2.2.30",
"@types/ssh2": "^0.5.38",
"@types/tar": "^4.0.3",
"@types/uuid": "^3.4.5",
"@types/validator": "^10.11.2",
"bcryptjs": "^2.4.3",
"body-parser": "^1.19.0",
"configstore": "^5.0.0",
"cookie-parser": "~1.4.4",
"debug": "~4.1.1",
"dockerode": "^2.5.8",
"ejs": "^2.6.2",
"express": "^4.17.1",
"fs-extra": "^8.1.0",
"http-proxy": "^1.17.0",
"is-valid-path": "^0.1.1",
"js-base64": "^2.5.1",
"jsonwebtoken": "^8.5.1",
"moment": "^2.24.0",
"morgan": "^1.9.1",
"multer": "^1.4.2",
"on-finished": "^2.3.0",
"public-ip": "^3.2.0",
"recursive-readdir": "^2.2.2",
"request": "^2.88.0",
"require-from-string": "^2.0.2",
"serve-favicon": "~2.5.0",
"simple-git": "^1.124.0",
"ssh2": "^0.8.5",
"tar": "^4.4.10",
"tslint": "^5.18.0",
"typescript": "^3.2.4",
"uuid": "^3.3.2",
"validator": "^11.1.0"
},
"devDependencies": {
"jest": "^24.8.0",
"ts-jest": "^24.0.2"
}
}