-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 888 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
{
"name": "planning-poker",
"version": "1.0.0",
"description": "Planning Poker is a way to estimate a relative effort for a given task.",
"main": "index.js",
"type": "module",
"scripts": {
"dev": "nodemon run src/socket-back.js",
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint --ignore-path .gitignore .",
"lint:fix": "npm run lint -- --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/oluizeduardo/planning-poker.git"
},
"keywords": [
"scrum",
"planning-poker"
],
"author": "Luiz Eduardo da Costa",
"license": "ISC",
"dependencies": {
"dotenv": "^16.3.1",
"express": "^4.18.2",
"socket.io": "^4.7.2",
"uuid": "^9.0.1",
"winston": "^3.11.0"
},
"devDependencies": {
"eslint": "^8.56.0",
"eslint-config-google": "^0.14.0",
"nodemon": "^3.0.2"
}
}