This repository has been archived by the owner on Oct 14, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
74 lines (74 loc) · 2.19 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "burndown-for-github-projects",
"version": "0.1.0",
"description": "Burndown chart for GitHub Projects-based sprint boards",
"main": "build/app.js",
"scripts": {
"build": "tsc --build --preserveWatchOutput",
"clean": "rm -rf build/*",
"clean:db": "npm run stop:db && docker volume rm burndown_db_cache -f",
"lint": "eslint .",
"start": "npm run clean && npm run build && (npm run build -- --watch & node --watch --inspect=0.0.0.0:9229 --enable-source-maps .)",
"start:db": "docker-compose up",
"stop:db": "docker-compose down",
"serve": "node .",
"test": "jest",
"postinstall": "[[ $NODE_ENV == 'production' ]] || node ./scripts/generateEnv.js",
"prepare": "[[ $NODE_ENV == 'production' ]] || husky install",
"validate": "npm run lint",
"markdown-inject": "markdown-inject -a"
},
"repository": {
"type": "git",
"url": "[email protected]:target/burndown-for-github-projects.git"
},
"keywords": [
"burndown",
"agile",
"sprint",
"scrum"
],
"dependencies": {
"@octokit/rest": "20.0.2",
"body-parser": "1.20.2",
"color-convert": "2.0.1",
"cors": "2.8.5",
"cosmiconfig": "8.3.6",
"dotenv": "16.3.1",
"express": "4.19.2",
"fs-extra": "11.1.1",
"http-status-codes": "2.3.0",
"mongodb": "6.2.0",
"node-cron": "3.0.3",
"uuid": "9.0.1",
"vega": "5.26.1"
},
"devDependencies": {
"@types/color-convert": "2.0.3",
"@types/cors": "2.8.16",
"@types/express": "4.17.21",
"@types/fs-extra": "11.0.4",
"@types/jest": "29.5.8",
"@types/mongodb": "4.0.7",
"@types/node-cron": "3.0.11",
"@types/supertest": "2.0.16",
"@types/tz-offset": "0.0.3",
"@types/uuid": "9.0.7",
"@typescript-eslint/eslint-plugin": "6.10.0",
"@typescript-eslint/parser": "6.10.0",
"eslint": "8.53.0",
"eslint-config-prettier": "9.0.0",
"eslint-plugin-prettier": "5.0.1",
"husky": "8.0.3",
"jest": "29.7.0",
"jest-canvas-mock": "2.5.2",
"markdown-inject": "4.0.1",
"prettier": "3.0.3",
"standard-version": "9.5.0",
"supertest": "6.3.3",
"ts-jest": "29.1.1",
"ts-node": "10.9.1",
"typescript": "5.2.2",
"tz-offset": "0.0.2"
}
}