forked from caprover/caprover
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
81 lines (81 loc) · 2.79 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": "caprover",
"version": "0.0.0",
"private": true,
"scripts": {
"disable-otp": "node ./built/scripts/disable-otp.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",
"lint": "eslint -c .eslintrc.js --ext .ts ./src",
"lint-fix": "eslint --fix -c .eslintrc.js --ext .ts ./src",
"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": "jest"
},
"dependencies": {
"axios": "^0.21.1",
"bcryptjs": "^2.4.3",
"body-parser": "^1.19.0",
"configstore": "^5.0.1",
"cookie-parser": "~1.4.5",
"cron": "^3.1.7",
"debug": "~4.3.2",
"dockerode": "^3.3.0",
"ejs": "^3.1.6",
"express": "^4.17.1",
"fs-extra": "^10.0.0",
"http-proxy": "^1.18.1",
"is-valid-path": "^0.1.1",
"js-base64": "^3.6.1",
"jsonwebtoken": "^8.5.1",
"moment": "^2.29.1",
"morgan": "^1.10.0",
"multer": "^1.4.3",
"on-finished": "^2.3.0",
"prettier": "2.3.2",
"public-ip": "^4.0.4",
"recursive-readdir": "^2.2.2",
"request": "^2.88.2",
"require-from-string": "^2.0.2",
"serve-favicon": "~2.5.0",
"simple-git": "^2.45.0",
"ssh2": "^1.4.0",
"tar": "^6.1.11",
"typescript": "^4.3.5",
"uuid": "^8.3.2",
"validator": "^13.6.0",
"yaml": "^1.10.2"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.2",
"@types/configstore": "^5.0.1",
"@types/cookie-parser": "^1.4.2",
"@types/debug": "^4.1.7",
"@types/dockerode": "^3.2.7",
"@types/ejs": "^3.1.0",
"@types/express": "^4.17.13",
"@types/fs-extra": "^9.0.12",
"@types/http-proxy": "^1.17.7",
"@types/is-valid-path": "^0.1.0",
"@types/jest": "^27.0.1",
"@types/js-base64": "^3.3.1",
"@types/jsonwebtoken": "^8.5.5",
"@types/morgan": "^1.9.3",
"@types/multer": "^1.4.7",
"@types/on-finished": "^2.3.1",
"@types/request": "^2.48.7",
"@types/require-from-string": "^1.2.1",
"@types/serve-favicon": "^2.5.3",
"@types/ssh2": "^0.5.47",
"@types/tar": "^6.1.13",
"@types/uuid": "^8.3.1",
"@types/validator": "^13.6.3",
"@typescript-eslint/eslint-plugin": "^4.29.3",
"@typescript-eslint/parser": "^4.29.3",
"eslint": "^7.32.0",
"jest": "^27.1.0",
"madge": "^5.0.1",
"ts-jest": "^27.0.5"
}
}