-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.27 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
{
"name": "easybuy",
"version": "1.0.0",
"description": "A RESTful Backend for E-Commerce sites.",
"main": "index.js",
"scripts": {
"test": "mocha --recursive --require chai/register-expect.js || exit 1",
"test-watch": "nodemon --config test.nodemon.json --exec npm test",
"watch": "nodemon --config watch.nodemon.json ./index.js",
"build-database": "node ./buildDatabase.js",
"clear-database": "node ./clearDatabase.js",
"rebuild-database": "npm run clear-database && npm run build-database"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lucadye/EasyBuy.git"
},
"author": "Luca Dye",
"license": "MIT",
"bugs": {
"url": "https://github.com/lucadye/EasyBuy/issues"
},
"homepage": "https://github.com/lucadye/EasyBuy#readme",
"dependencies": {
"bcrypt": "^5.1.1",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"express": "^4.19.2",
"express-session": "^1.18.0",
"memorystore": "^1.6.7",
"passport": "^0.7.0",
"passport-google-oauth20": "^2.0.0",
"passport-local": "^1.0.0",
"pg": "^8.11.3",
"stripe": "^16.6.0",
"swagger-ui-express": "^5.0.0"
},
"devDependencies": {
"chai": "^5.1.0",
"mocha": "^10.4.0",
"nodemon": "^3.1.0",
"supertest": "^6.3.4"
}
}