forked from caprover/caprover
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
75 lines (75 loc) · 2.52 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
{
"name": "caprover",
"version": "0.0.0",
"private": true,
"scripts": {
"start": "node ./built/server.js",
"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",
"formatter": "prettier --check './src/**/*.ts'",
"formatter-write": "prettier --write './src/**/*.ts'",
"build": "echo 'RECOMPILING' && npx madge --circular --extensions ts ./ && rm -rf ./built && npx tsc && echo 'Build successful'",
"test": "npm run build && jest"
},
"dependencies": {
"@types/bcryptjs": "^2.4.2",
"@types/configstore": "^4.0.0",
"@types/cookie-parser": "^1.4.2",
"@types/dockerode": "^3.2.2",
"@types/ejs": "^3.0.5",
"@types/express": "^4.17.11",
"@types/fs-extra": "^9.0.7",
"@types/http-proxy": "^1.17.5",
"@types/jest": "^26.0.20",
"@types/js-base64": "^3.0.0",
"@types/jsonwebtoken": "^8.5.0",
"@types/morgan": "^1.9.2",
"@types/multer": "^1.4.5",
"@types/on-finished": "^2.3.1",
"@types/request": "^2.48.5",
"@types/require-from-string": "^1.2.0",
"@types/serve-favicon": "^2.5.2",
"@types/ssh2": "^0.5.46",
"@types/tar": "^4.0.4",
"@types/uuid": "^8.3.0",
"@types/validator": "^13.1.3",
"axios": "^0.21.1",
"bcryptjs": "^2.4.3",
"body-parser": "^1.19.0",
"configstore": "^5.0.1",
"cookie-parser": "~1.4.5",
"debug": "~4.3.1",
"dockerode": "^3.2.1",
"ejs": "^3.1.6",
"express": "^4.17.1",
"fs-extra": "^9.1.0",
"http-proxy": "^1.18.1",
"is-valid-path": "^0.1.1",
"js-base64": "^3.6.0",
"jsonwebtoken": "^8.5.1",
"madge": "^4.0.0",
"moment": "^2.29.1",
"morgan": "^1.10.0",
"multer": "^1.4.2",
"on-finished": "^2.3.0",
"prettier": "^2.2.1",
"public-ip": "^4.0.3",
"recursive-readdir": "^2.2.2",
"request": "^2.88.2",
"require-from-string": "^2.0.2",
"serve-favicon": "~2.5.0",
"simple-git": "^2.34.2",
"ssh2": "^0.8.9",
"tar": "^6.1.0",
"tslint": "^6.1.3",
"typescript": "^4.1.5",
"uuid": "^8.3.2",
"validator": "^13.5.2",
"yaml": "^1.10.0"
},
"devDependencies": {
"jest": "^26.6.3",
"ts-jest": "^26.5.1"
}
}