-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1.01 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
{
"name": "node-template",
"version": "1.0.0",
"description": "Trello board with entire Bob Dylan's discography",
"main": "index.js",
"scripts": {
"test": "jest --silent --verbose",
"coverage": "jest --coverage --silent --verbose",
"lint": "npx eslint .",
"create-board": "node index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rafapirotto/node-template.git"
},
"keywords": [],
"author": "Rafael Pirotto",
"license": "MIT",
"bugs": {
"url": "https://github.com/rafapirotto/node-template/issues"
},
"homepage": "https://github.com/rafapirotto/node-template#readme",
"dependencies": {
"axios": "^0.27.2",
"dotenv": "^16.0.1",
"winston": "^3.7.2"
},
"devDependencies": {
"eslint": "^8.13.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.0.0",
"jest": "^28.1.0",
"nodemon": "^2.0.15",
"prettier": "^2.6.2"
}
}