-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.39 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
{
"name": "e-commerce-rest-api",
"version": "1.0.0",
"description": "This is a REST API for an e-commerce website portfolio project",
"main": "server.js",
"author": "Eleonora",
"scripts": {
"start": "nodemon -r dotenv/config server.js",
"test": "echo \"Error: no test specified\" && exit 1",
"create-db": "node -r dotenv/config setupDatabase"
},
"dependencies": {
"body-parser": "^1.20.2",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"express": "^4.18.2",
"express-session": "^1.18.0",
"fs": "^0.0.1-security",
"helmet": "^7.1.0",
"http-errors": "^2.0.0",
"install-peerdeps": "^3.0.3",
"js-yaml": "^4.1.0",
"moment": "^2.30.1",
"nodemon": "^3.0.3",
"passport": "^0.7.0",
"passport-local": "^1.0.0",
"path": "^0.12.7",
"pg": "^8.11.3",
"pg-promise": "^11.5.4",
"stripe": "^14.18.0",
"swagger-ui-express": "^5.0.0"
},
"engines": {
"node": ">=14"
},
"devDependencies": {
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"eslint": "^8.2.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-react-hooks": "^4.3.0"
}
}