-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
37 lines (37 loc) · 1007 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
36
37
{
"name": "task-manager-nodejs",
"version": "1.0.0",
"description": "An in memory (NO DATABASE) web application REST backend for managing personal tasks and notes within a given task.",
"main": "main.js",
"scripts": {
"start": "node src/main.js",
"dev": "nodemon src/main.js",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Ak-Shaw/task-manager-nodejs.git"
},
"keywords": [],
"author": "Ak-Shaw",
"license": "ISC",
"bugs": {
"url": "https://github.com/Ak-Shaw/task-manager-nodejs/issues"
},
"homepage": "https://github.com/Ak-Shaw/task-manager-nodejs#readme",
"dependencies": {
"express": "^4.18.1",
"http-errors": "^2.0.0",
"joi": "^17.6.0",
"node-emoji": "^1.11.0",
"winston": "^3.8.1"
},
"devDependencies": {
"eslint": "^8.21.0",
"eslint-config-google": "^0.14.0",
"eslint-config-prettier": "^8.5.0",
"jest": "^28.1.3",
"nodemon": "^2.0.19",
"prettier": "^2.7.1"
}
}