-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 986 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 986 Bytes
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": "planning-poker",
"version": "1.2.2",
"description": "A real-time planning poker application with multiple deck options",
"main": "server.js",
"scripts": {
"start": "node server.js",
"dev": "nodemon server.js",
"build": "cd client && npm run build",
"install-client": "cd client && npm install",
"heroku-postbuild": "npm run install-client && npm run build"
},
"dependencies": {
"express": "^4.19.2",
"socket.io": "^4.8.1",
"uuid": "^10.0.0",
"cors": "^2.8.5"
},
"devDependencies": {
"nodemon": "^3.1.0"
},
"keywords": ["planning-poker", "scrum", "estimation", "agile"],
"author": "Andrew Busbee (https://github.com/andrewbusbee)",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/andrewbusbee/planning-poker.git"
},
"engines": {
"node": ">=18.0.0",
"npm": ">=9.0.0"
},
"resolutions": {
"cross-spawn": "^7.0.5"
}
}