-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.38 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
{
"name": "scrum-poker",
"version": "1.0.0",
"description": "This is an application that integrates with GitHub Projects for seamless import of product backlogs into a UI for easy sprint estimation.",
"main": "index.js",
"type": "module",
"scripts": {
"//": "development:",
"start": "npm run build && npm run server",
"build": "tsc -p .",
"predisabled": "xcopy \".\\src\\webgl\" \".\\dist\\webgl\" /s /e /i /y",
"server": "node ./dist/index.js",
"socket": "node ./dist/wss.js",
"wss": "tsc-watch -p tsconfig.json --onSuccess \"node ./dist/wss.js\"",
"dev": "tsc-watch -p tsconfig.json --onSuccess \"npm run server\"",
"//": "production",
"start-prod": "npm run build && npm run server && npm run socket"
},
"keywords": [
"agile",
"devops",
"scrum",
"sprint",
"estimation",
"scrum-poker",
"poker",
"gamify",
"pointing"
],
"author": "",
"license": "ISC",
"dependencies": {
"@types/dotenv": "^8.2.0",
"@types/node": "^20.11.20",
"@types/ws": "^8.5.10",
"cors": "^2.8.5",
"cron": "^3.1.7",
"dotenv": "^16.4.1",
"express": "^4.18.3",
"jsonwebtoken": "^9.0.2",
"mongoose": "^8.2.1",
"octokit": "^3.1.2",
"ws": "^8.16.0"
},
"devDependencies": {
"@types/express": "^4.17.21",
"smee-client": "^2.0.1",
"tsc-watch": "^6.0.4",
"typescript": "^5.3.3"
}
}