forked from caprover/caprover
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 2.06 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 2.06 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
{
"name": "caprover",
"version": "0.0.0",
"private": true,
"scripts": {
"start": "node ./bin/www",
"dev": "echo 'RECOMPILING' && npx madge --circular --extensions ts ./ && rm -rf ./built && npx tsc && sudo ./dev-scripts/dev-reset-service.sh",
"clean": "sudo ./dev-scripts/dev-clean-run-as-dev.sh",
"tslint": "tslint -c tslint.json -p tsconfig.json",
"build": "rm -rf ./built && npx tsc",
"test": "rm -rf ./built && npx tsc && jest"
},
"dependencies": {
"@types/bcryptjs": "^2.4.2",
"@types/configstore": "^4.0.0",
"@types/cookie-parser": "^1.4.1",
"@types/dockerode": "^2.5.11",
"@types/ejs": "^2.6.1",
"@types/express": "^4.16.1",
"@types/fs-extra": "^5.0.4",
"@types/http-proxy": "^1.16.2",
"@types/jest": "^24.0.6",
"@types/js-base64": "^2.3.1",
"@types/jsonwebtoken": "^8.3.0",
"@types/morgan": "^1.7.35",
"@types/multer": "^1.3.7",
"@types/on-finished": "^2.3.1",
"@types/public-ip": "^2.4.0",
"@types/request": "^2.48.1",
"@types/require-from-string": "^1.2.0",
"@types/serve-favicon": "^2.2.30",
"@types/ssh2": "^0.5.37",
"@types/tar": "^4.0.0",
"@types/uuid": "^3.4.4",
"@types/validator": "^10.9.0",
"bcryptjs": "^2.4.3",
"body-parser": "^1.18.3",
"configstore": "^4.0.0",
"cookie-parser": "~1.4.3",
"debug": "~4.1.1",
"dockerode": "^2.5.8",
"ejs": "^2.6.1",
"express": "^4.16.4",
"fs-extra": "^7.0.1",
"http-proxy": "^1.17.0",
"is-valid-path": "^0.1.1",
"js-base64": "^2.5.1",
"jsonwebtoken": "^8.4.0",
"moment": "^2.24.0",
"morgan": "^1.9.1",
"multer": "^1.4.1",
"on-finished": "^2.3.0",
"public-ip": "^3.0.0",
"recursive-readdir": "^2.2.2",
"request": "^2.88.0",
"require-from-string": "^2.0.2",
"serve-favicon": "~2.5.0",
"simple-git": "^1.107.0",
"ssh2": "^0.8.2",
"tar": "^4.4.8",
"tslint": "^5.12.1",
"typescript": "^3.2.4",
"uuid": "^3.3.2",
"validator": "^10.11.0"
},
"devDependencies": {
"jest": "^24.1.0",
"ts-jest": "^24.0.0"
}
}