-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.35 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
43
44
45
46
47
{
"name": "authenticate-me",
"version": "1.0.0",
"description": "# Air-BNB",
"main": "index.js",
"scripts": {
"heroku-postbuild": "npm run build --prefix frontend",
"install": "npm --prefix backend install backend && npm --prefix frontend install frontend",
"dev:backend": "npm install --prefix backend start",
"dev:frontend": "npm install --prefix frontend start",
"sequelize": "npm run --prefix backend sequelize",
"sequelize-cli": "npm run --prefix backend sequelize-cli",
"start": "npm start --prefix backend"
},
"repository": {
"type": "git",
"url": "git+https://github.com/AppBK/API-Project-Real.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/AppBK/API-Project-Real/issues"
},
"homepage": "https://github.com/AppBK/API-Project-Real#readme",
"dependencies": {
"bcryptjs": "^2.4.3",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"csurf": "^1.11.0",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"express-async-errors": "^3.1.1",
"express-validator": "^6.14.2",
"helmet": "^6.0.0",
"jsonwebtoken": "^8.5.1",
"morgan": "^1.10.0",
"per-env": "^1.0.2",
"sequelize": "^6.25.3",
"sequelize-cli": "^6.5.1"
},
"devDependencies": {
"dotenv-cli": "^6.0.0",
"nodemon": "^2.0.20",
"sqlite3": "^5.1.2"
}
}