-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 921 Bytes
/
package.json
File metadata and controls
42 lines (42 loc) · 921 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
37
38
39
40
41
42
{
"name": "task-manager",
"version": "2.8.0",
"description": "",
"main": "app.js",
"scripts": {
"start": "node --es-module-specifier-resolution=node app.js",
"dev": "nodemon --es-module-specifier-resolution=node app.js",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rameshrrl/Task-Manager.git"
},
"keywords": [
"crud",
"authentication",
"rest",
"api",
"promise",
"pagination"
],
"author": "",
"license": "ISC",
"type": "module",
"dependencies": {
"bcryptjs": "^2.4.3",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"jsonwebtoken": "^8.5.1",
"mongoose": "^6.0.12"
},
"devDependencies": {
"@babel/core": "^7.16.0",
"@babel/preset-env": "^7.16.0",
"@types/jest": "^27.0.2",
"babel-jest": "^27.3.1",
"jest": "^27.3.1",
"jest-cli": "^27.3.1",
"nodemon": "^2.0.14"
}
}