forked from CipherYuvraj/Greenstagram
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 2.26 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 2.26 KB
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": "greenstagram",
"version": "1.0.0",
"private": true,
"scripts": {
"install:all": "npm install && cd frontend && npm install && cd ../backend && npm install",
"build": "npm run build:frontend && npm run build:backend",
"build:frontend": "cd frontend && npm run build",
"build:backend": "cd backend && npm run build",
"dev": "concurrently \"npm run dev:backend\" \"npm run dev:frontend\"",
"dev:frontend": "cd frontend && npm run dev",
"dev:backend": "cd backend && npm run dev",
"dev:functions": "netlify functions:serve",
"deploy": "node scripts/deploy.js",
"deploy:vercel": "node scripts/deploy.js vercel",
"deploy:netlify": "node scripts/deploy.js netlify",
"deploy:render": "node scripts/deploy.js render",
"deploy:azure": "node scripts/deploy.js azure",
"deploy:aws": "node scripts/deploy.js aws",
"deploy:frontend": "node scripts/deploy.js",
"deploy:backend": "node scripts/deploy.js",
"deploy:preview": "npm run build && netlify deploy",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
"lint:fix": "eslint . --ext .js,.jsx,.ts,.tsx --fix",
"format": "prettier --write \"**/*.{js,jsx,ts,tsx,json,md}\"",
"typecheck": "cd frontend && tsc --noEmit",
"prepare": "husky install",
"health-check": "node scripts/health-check.js",
"validate:env": "node scripts/validate-env.js",
"setup:env": "node scripts/setup-env.js"
},
"dependencies": {
"@netlify/functions": "^4.2.2",
"@types/mongoose": "^5.11.96",
"bcrypt": "^6.0.0",
"bcryptjs": "^3.0.2",
"jsonwebtoken": "^9.0.2",
"mongodb": "^6.16.0",
"mongoose": "^8.17.2"
},
"devDependencies": {
"@types/bcrypt": "^5.0.2",
"@types/bcryptjs": "^2.4.6",
"@types/jsonwebtoken": "^9.0.9",
"@typescript-eslint/eslint-plugin": "^8.45.0",
"@typescript-eslint/parser": "^8.45.0",
"concurrently": "^8.2.2",
"dotenv": "^17.2.3",
"eslint": "^9.36.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.4",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^6.1.0",
"husky": "^9.1.7",
"netlify-cli": "^17.0.0",
"prettier": "^3.6.2",
"serverless": "^3.38.0",
"serverless-dotenv-plugin": "^6.0.0",
"serverless-offline": "^13.3.0"
}
}