-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 892 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
33
34
35
36
{
"name": "dot-calendar",
"version": "1.0.0",
"description": "Create your own version of a Dot Calendar",
"repository": {
"type": "git",
"url": "https://github.com/urbanisierung/dot-calendar"
},
"main": "index.ts",
"scripts": {
"start": "ts-node ./src/index.ts",
"build": "tsc --p tsconfig.json",
"dist": "node dist/index.js",
"generate:config": "ts-node ./src/utils/config-creator.ts",
"test": "jest"
},
"author": "",
"license": "MIT",
"dependencies": {
"@types/node": "^20.10.4",
"canny-edge-detector": "^1.0.0",
"canvas": "^2.11.2",
"dotenv": "^16.3.1",
"image-js": "^0.35.5",
"uuid": "^9.0.1"
},
"devDependencies": {
"@types/jasmine": "^5.1.4",
"@types/jest": "^29.5.11",
"jest": "^29.7.0",
"nyc": "^15.1.0",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.2",
"typescript": "^4.9.5"
}
}