-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.68 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
48
49
50
51
52
53
54
55
56
57
58
59
60
{
"name": "wildcart",
"version": "1.0.0",
"description": "E-Commerce RESTful API",
"main": "index.js",
"scripts": {
"start": "node index.js",
"dev": "nodemon --inspect index.js",
"test": "jest --passWithNoTests",
"lint": "eslint . --max-warnings 0",
"migrate:up": "npx sequelize-cli db:migrate",
"migrate:down": "npx sequelize-cli db:migrate:undo",
"migrate:down:all": "npx sequelize-cli db:migrate:undo:all",
"seed:up": "npx sequelize-cli db:seed:all",
"seed:down": "npx sequelize-cli db:seed:undo:all"
},
"repository": {
"type": "git",
"url": "git+https://github.com/IslamWalid/wildcart.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/IslamWalid/wildcart/issues"
},
"homepage": "https://github.com/IslamWalid/wildcart#readme",
"devDependencies": {
"@faker-js/faker": "^8.1.0",
"dotenv": "^16.3.1",
"eslint": "^8.51.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-n": "^15.7.0",
"eslint-plugin-promise": "^6.1.1",
"jest": "^29.7.0",
"nodemon": "^3.0.1",
"supertest": "^6.3.3"
},
"dependencies": {
"bcrypt": "^5.1.1",
"config": "^3.3.9",
"connect-session-sequelize": "^7.1.7",
"cors": "^2.8.5",
"express": "^4.18.2",
"express-paginate": "^1.0.2",
"express-session": "^1.17.3",
"joi": "^17.11.0",
"multer": "^1.4.5-lts.1",
"passport": "^0.6.0",
"passport-local": "^1.0.0",
"pg": "^8.11.3",
"pg-hstore": "^2.3.4",
"sequelize": "^6.33.0",
"sequelize-cli": "^5.5.1",
"stripe": "^13.9.0",
"validator": "^13.11.0",
"winston": "^3.11.0"
}
}