-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 3.11 KB
/
Copy pathpackage.json
File metadata and controls
78 lines (78 loc) · 3.11 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "final-project-template",
"version": "1.0.0",
"description": "## Notable libraries",
"main": "index.js",
"scripts": {
"start": "npm run start:server",
"start:server": "cd server && npm run start && cd ..",
"build": "echo \"Build script ignored! Heroku will use this and we want to have full control\"",
"build:client": "cd client && npm run build && cd ..",
"dev": "concurrently \"npm run dev:client\" \"npm run dev:server\"",
"dev:client": "cd client && npm run dev && cd ..",
"dev:server": "cd server && npm run dev && cd ..",
"setup": "npm run setup:client && npm run setup:server",
"setup:client": "cd client && npm run setup && cd ..",
"setup:server": "cd server && npm run setup && cd ..",
"heroku-postbuild": "npm run setup && npm run build:client",
"test": "npm run test:client && npm run test:server",
"test:client": "cd client && npm run test && cd ..",
"test:server": "cd server && npm run test && cd ..",
"test:cypress": "cypress run",
"code-style-check": "npm run code-style-check:client && npm run code-style-check:server",
"code-style-check:client": "cd client && npm run code-style-check && cd ..",
"code-style-check:server": "cd server && npm run code-style-check && cd ..",
"prepare": "husky install",
"pre-commit": "npm run pre-commit:client && npm run pre-commit:server",
"pre-commit:client": "cd client && npm run pre-commit && cd ..",
"pre-commit:server": "cd server && npm run pre-commit && cd ..",
"autofix": "npm run autofix:client && npm run autofix:server",
"autofix:client": "cd client && npm run autofix && cd ..",
"autofix:server": "cd server && npm run autofix && cd ..",
"lint": "npm run lint:client && npm run lint:server",
"lint:client": "cd client && npm run lint && cd ..",
"lint:server": "cd server && npm run lint && cd ..",
"cypress": "cypress open"
},
"repository": {
"type": "git",
"url": "git+https://github.com/HackYourFuture/final-project-template.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/HackYourFuture/final-project-template/issues"
},
"homepage": "https://github.com/HackYourFuture/final-project-template#readme",
"devDependencies": {
"css-loader": "^7.1.2",
"cypress": "^13.8.1",
"husky": "^7.0.0",
"style-loader": "^4.0.0"
},
"dependencies": {
"@hookform/resolvers": "^3.9.0",
"@maptiler/leaflet-maptilersdk": "^2.0.0",
"@multiavatar/multiavatar": "^1.0.7",
"@sendbird/uikit-react": "^3.14.14",
"bcryptjs": "^2.4.3",
"cloudinary": "^2.4.0",
"cloudinary-react": "^1.8.1",
"concurrently": "^8.2.2",
"dotenv": "^16.4.5",
"jsonwebtoken": "^9.0.2",
"jwt-decode": "^4.0.0",
"leaflet": "^1.9.4",
"leaflet-control-geocoder": "^2.4.0",
"leaflet-routing-machine": "^3.2.12",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-hook-form": "^7.52.1",
"react-icons": "^5.2.1",
"react-leaflet": "^4.2.1",
"react-leaflet-cluster": "^2.1.0",
"react-leaflet-markercluster": "^3.0.0-rc1",
"sendbird": "^3.0.126",
"yup": "^1.4.0"
}
}