-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1.14 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": "guideme-backend",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "NODE_ENV=development nodemon index.js",
"start": "NODE_ENV=production node index.js",
"build:ui": "rm -rf build && cd client && npm run build && cp -r build .. && cd ..",
"deploy": "git add . && git commit -m uibuild && git push heroku main",
"deploy:full": "npm run build:ui && npm run deploy",
"test": "NODE_ENV=test jest --verbose --runInBand",
"lint": "node_modules/.bin/eslint ."
},
"author": "mohamed",
"license": "ISC",
"dependencies": {
"bcrypt": "^5.0.1",
"cors": "^2.8.5",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"express-async-errors": "^3.1.1",
"jsonwebtoken": "^8.5.1",
"mongoose": "^6.0.9",
"mongoose-unique-validator": "^2.0.3",
"nodemon": "^2.0.13"
},
"devDependencies": {
"eslint": "^7.32.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.26.1",
"eslint-plugin-react-hooks": "^1.7.0",
"jest": "^27.3.1",
"supertest": "^6.1.6"
}
}