-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.45 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
{
"name": "cowphone",
"description": "A little bit of cows for your desktop phone.",
"main": "app.ts",
"scripts": {
"build": "npx tsc",
"start": "node ./dist/src/app.js",
"test": "npx jest",
"lint": "npx prettier . --check",
"format": "npx prettier . --write"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nbe95/cowphone.git"
},
"author": "Niklas Bettgen",
"license": "MIT",
"bugs": {
"url": "https://github.com/nbe95/cowphone/issues"
},
"homepage": "https://github.com/nbe95/cowphone#readme",
"dependencies": {
"axios": "^1.6.8",
"canvas": "^2.11.2",
"cookie": "^0.6.0",
"express": "^4.19.2",
"find-remove": "^4.1.0",
"fs": "^0.0.1-security",
"ftp-srv": "^4.6.3",
"gm": "^1.25.0",
"http-status-codes": "^2.3.0",
"mkdirp": "^3.0.1",
"node-cron": "^3.0.3",
"path": "^0.12.7",
"strftime": "^0.10.2",
"typescript": "^5.4.5"
},
"devDependencies": {
"@types/cookie": "^0.6.0",
"@types/express": "^4.17.21",
"@types/find-remove": "^2.0.3",
"@types/gm": "^1.25.4",
"@types/jest": "^29.5.12",
"@types/node": "^20.12.11",
"@types/node-cron": "^3.0.11",
"@types/strftime": "^0.9.8",
"jest": "^29.7.0",
"prettier": "^3.2.5",
"prettier-plugin-organize-imports": "^3.2.4",
"ts-jest": "^29.1.2"
},
"prettier": {
"printWidth": 100,
"plugins": [
"prettier-plugin-organize-imports"
]
}
}