-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 748 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 748 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
{
"name": "goit-node-js",
"version": "1.0.0",
"description": "goit-node-js",
"type": "module",
"main": "index.js",
"scripts": {
"get-all": "node src/scripts/getAllContacts",
"generate": "node src/scripts/generateContacts.js",
"add-one": "node src/scripts/addOneContact.js",
"count": "node src/scripts/countContacts.js",
"remove-last": "node src/scripts/removeLastContact.js",
"remove-all": "node src/scripts/removeAllContacts.js",
"dev": "nodemon src/index.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@eslint/js": "^9.2.0",
"@faker-js/faker": "^9.0.3",
"eslint": "^9.2.0",
"globals": "^15.1.0"
},
"dependencies": {
"nodemon": "^3.1.7"
}
}