-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.07 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
{
"name": "exam_proj",
"version": "0.0.0",
"private": true,
"main": "src/app.js",
"scripts": {
"start": "node src/app.js",
"dev": "nodemon src/app.js --ignore sessions --ext js,jsx"
},
"dependencies": {
"@babel/core": "^7.20.2",
"@babel/preset-env": "^7.20.2",
"@babel/preset-react": "^7.18.6",
"@babel/register": "^7.18.9",
"bcrypt": "^5.1.0",
"body-parser": "^1.20.1",
"debug": "~4.3.4",
"dotenv": "^16.0.3",
"express": "~4.18.2",
"express-session": "^1.17.3",
"morgan": "~1.10.0",
"multer": "^1.4.5-lts.1",
"pg": "^8.8.0",
"pg-hstore": "^2.3.4",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"sequelize": "^6.25.5",
"session-file-store": "^1.5.0"
},
"devDependencies": {
"eslint": "^8.34.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"nodemon": "^2.0.20",
"sequelize-cli": "^6.5.2"
}
}