forked from chriscn/uoy-week-calendar
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 957 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
37
38
39
{
"name": "uoy-week-calendar",
"version": "0.1.0",
"description": "",
"main": "dist/generate.js",
"scripts": {
"generate": "ts-node src/generate.ts",
"test": "jest --coverage",
"test:watch": "jest --watch",
"dev": "nodemon src/server.ts",
"dev:print": "nodemon src/print.ts",
"build": "tsc",
"prepack": "tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/chriscn/uoy-week-calendar.git"
},
"keywords": [],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/chriscn/uoy-week-calendar/issues"
},
"homepage": "https://github.com/chriscn/uoy-week-calendar#readme",
"dependencies": {
"dayjs": "^1.11.7",
"hash.js": "^1.1.7",
"ical-generator": "^4.1.0",
"nodemon": "^2.0.20",
"ts-node": "^10.9.1",
"typescript": "^4.9.4"
},
"devDependencies": {
"@types/jest": "^29.2.5",
"jest": "^29.3.1",
"ts-jest": "^29.0.3"
}
}