-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.28 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
39
40
41
42
{
"name": "todo-app-mongodb",
"version": "1.0.0",
"description": "This project was bootstrapped with [Create React App](https://github.com/facebook/create-react-app).",
"main": "index.js",
"scripts": {
"start": "NODE_ENV=production node server/index.js",
"dev": "NODE_ENV=development nodemon server/index.js",
"project-setup": "npm install && cd client && npm install",
"fakeDataBuild": "node server/database/index.js",
"test": "NODE_ENV=test jest --no-cache --runInBand --coverage",
"kill": "fuser -k 5000/tcp"
},
"repository": {
"type": "git",
"url": "git+https://github.com/MohammedAlghazali/todo-app-mongodb.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/MohammedAlghazali/todo-app-mongodb/issues"
},
"homepage": "https://github.com/MohammedAlghazali/todo-app-mongodb#readme",
"dependencies": {
"axios": "^0.20.0",
"bcrypt": "^5.0.0",
"compression": "^1.7.4",
"cookie-parser": "^1.4.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"jsonwebtoken": "^8.5.1",
"mongoose": "^5.10.7",
"yup": "^0.29.3"
},
"devDependencies": {
"eslint": "^7.9.0",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-plugin-import": "^2.22.0",
"nodemon": "^2.0.4"
}
}