-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 1.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
{
"name": "image-troll-server",
"version": "1.0.0",
"description": "Get Trolled",
"main": "dist/routes.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "ts-node-dev --respawn ./src/routes.ts",
"docs": "typedoc",
"build": "rimraf -G dist && tsc -b && copyfiles -e '*.ts' ./src/*.* ./dist/ && copyfiles -a package.json dist && rimraf -G dist/routes.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/the-wright-jamie/ImageTrollServer.git"
},
"author": "Jamie Wright",
"license": "ISC",
"bugs": {
"url": "https://github.com/the-wright-jamie/ImageTrollServer/issues"
},
"homepage": "https://github.com/the-wright-jamie/ImageTrollServer#readme",
"devDependencies": {
"@types/express": "^4.17.18",
"@types/node": "^20.8.0",
"ts-node-dev": "^2.0.0",
"typescript": "^5.2.2"
},
"dependencies": {
"canvas": "^2.11.2",
"copyfiles": "^2.4.1",
"express": "^4.18.2",
"path": "^0.12.7",
"rimraf": "^5.0.5"
}
}