-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.97 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
61
{
"name": "people-focused-website",
"version": "1.0.0",
"description": "An hr website ",
"main": "bundle.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start:prod": "SET NODE_ENV=production&& nodemon server.js",
"start": "node server.js",
"dev": "nodemon server.js",
"watch:js": "parcel watch ./public/Js_Files/index.js --dist-dir ./public/Js_Files --out-file bundle.js --public-url ./",
"build:js": "parcel build ./public/Js_Files/index.js --dist-dir ./public/Js_Files --public-url ./",
"prettier-format": "prettier --config .prettierrc \"./**/*.js\" --write"
},
"author": "Oladele Tobiloba",
"license": "ISC",
"dependencies": {
"axios": "^0.23.0",
"bcrypt": "^5.0.1",
"cloudinary": "^1.26.3",
"cookie-parser": "^1.4.5",
"core-js": "^2.6.12",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-mongo-sanitize": "^2.1.0",
"express-rate-limit": "^5.2.6",
"generate-password": "^1.7.0",
"googleapis": "^92.0.0",
"gridfs-stream": "^1.1.1",
"helmet": "^4.6.0",
"hpp": "^0.2.3",
"html-to-text": "^8.1.0",
"jsonwebtoken": "^8.5.1",
"method-override": "^3.0.0",
"mongoose": "^5.12.3",
"morgan": "^1.10.0",
"multer": "^1.4.2",
"multer-storage-cloudinary": "^4.0.0",
"nodemailer": "^6.6.1",
"nodemon": "^2.0.2",
"parcel": "latest",
"pug": "^3.0.2",
"regenerator-runtime": "^0.13.9",
"save-dev": "0.0.1-security",
"slugify": "^1.5.0",
"validator": "^13.6.0",
"xss-clean": "^0.1.1"
},
"devDependencies": {
"eslint": "^8.6.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.28.0",
"parcel-bundler": "^1.12.5",
"prettier": "^2.5.1"
}
}