-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
81 lines (81 loc) · 2.43 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "ShutterSync",
"version": "1.0.0",
"description": "ShutterSync aims to address the need for professional photographers to efficiently share and collaborate on their work with clients, enhancing client engagement and project management.",
"main": "index.js",
"repository": "https://github.com/ayequill/ShutterSync.git",
"author": {
"name": "Siaw A. Nicholas",
"email": "siawnic.dev@gmail.com",
"url": "https://siaw.dev"
},
"license": "MIT",
"scripts": {
"start": "node server/server.js",
"dev": "nodemon -e js,json -w server -i node_modules --exec node --inspect server/server.js",
"format": "prettier --config ./.prettierrc -w 'server/**/*.js' && git update-index --again",
"prepare": "husky install",
"cz": "cz",
"test": "node --experimental-vm-modules node_modules/.bin/jest"
},
"type": "module",
"keywords": [
"react",
"node",
"express",
"mongodb",
"mern"
],
"dependencies": {
"@google-cloud/storage": "^7.6.0",
"bcrypt": "^5.1.1",
"body-parser": "^1.20.2",
"cloudinary": "^1.41.0",
"compression": "1.7.4",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"crypto-js": "^4.1.1",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"express-jwt": "^8.4.1",
"helmet": "^7.0.0",
"jsonwebtoken": "^9.0.2",
"lodash": "^4.17.21",
"mongodb": "^6.2.0",
"mongoose": "^8.0.0",
"morgan": "^1.10.0",
"multer": "^1.4.5-lts.1",
"nanoid": "^5.0.3",
"nodemailer": "^6.9.7",
"nodemon": "^3.0.1",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^5.0.0",
"usehooks-ts": "^2.9.1",
"uuid": "^9.0.1",
"yamljs": "^0.3.0"
},
"devDependencies": {
"@commitlint/cli": "^17.4.2",
"@commitlint/config-conventional": "^17.4.2",
"babel-cli": "^6.26.0",
"babel-preset-env": "^1.7.0",
"cz-conventional-changelog": "3.3.0",
"eslint": "^8.53.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^8.4.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-prettier": "^5.0.1",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-react-hooks": "^4.3.0",
"eslint-plugin-simple-import-sort": "^9.0.0",
"husky": "^8.0.3",
"identity-obj-proxy": "^3.0.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"prettier": "^3.0.3",
"rollup": "^3.10.1",
"superagent": "^8.1.2",
"supertest": "^6.3.3"
}
}