-
Notifications
You must be signed in to change notification settings - Fork 126
/
package.json
52 lines (52 loc) · 1.42 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
{
"name": "scruter",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"test": "npx nodemon app.js",
"dev": "nodemon app.js",
"start": "node app.js",
"lint": "eslint .",
"lint:ejs": "npx ejs-lint views/**/*.ejs",
"format": "prettier --write .",
"build": "webpack"
},
"author": "",
"license": "ISC",
"dependencies": {
"bcrypt": "^5.1.1",
"bcryptjs": "^2.4.3",
"cloudinary": "^1.41.3",
"connect-mongo": "^5.1.0",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"ejs": "^3.1.10",
"ejs-lint": "^2.0.1",
"express": "^4.21.1",
"express-rate-limit": "^7.4.1",
"express-session": "^1.18.1",
"express-validator": "^7.2.0",
"helmet": "^8.0.0",
"mongodb": "^6.11.0",
"mongoose": "^8.8.3",
"multer": "^1.4.5-lts.1",
"multer-storage-cloudinary": "^4.0.0",
"nodemon": "^3.1.7",
"react-toastify": "^10.0.6",
"scruter": "file:"
},
"description": "Scruter is a local classifieds and community site designed to bring people together for buying, selling, and exchanging goods and services.",
"keywords": [],
"devDependencies": {
"@eslint/js": "^9.16.0",
"eslint": "^9.16.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-ejs": "^0.0.2",
"eslint-plugin-html": "^8.1.2",
"globals": "^15.13.0",
"prettier": "^3.4.1",
"webpack": "^5.96.1",
"webpack-cli": "^5.1.4",
"webpack-node-externals": "^3.0.0"
}
}