-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
32 lines (32 loc) · 861 Bytes
/
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
{
"name": "imaginer",
"version": "1.0.0",
"description": "This project is used to generate images to be used in mocks",
"main": "index.js",
"scripts": {
"tsc": "tsc",
"dev": "ts-node-dev --respawn --transpile-only --no-notify ./src/index.ts",
"prod": "tsc && node ./dist/index.js",
"postinstall": "npm install canvas --build-from-source & tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Kristonitas/imaginer.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/Kristonitas/imaginer/issues"
},
"homepage": "https://github.com/Kristonitas/imaginer#readme",
"dependencies": {
"canvas": "^2.6.1",
"express": "4.17.1"
},
"devDependencies": {
"@types/express": "4.17.9",
"ts-node-dev": "1.1.1",
"typescript": "4.1.3"
}
}