-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 2.87 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 2.87 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
{
"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": {
"@types/jest": "^27.0.2",
"axios": "^1.6.7",
"cypress": "^13.6.4",
"husky": "^7.0.0"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^6.5.1",
"@fortawesome/free-brands-svg-icons": "^6.5.1",
"@fortawesome/free-solid-svg-icons": "^6.5.1",
"@fortawesome/react-fontawesome": "^0.2.0",
"bcryptjs": "^2.4.3",
"cloudinary": "^2.0.0",
"concurrently": "^6.4.0",
"cors": "^2.8.5",
"jsonwebtoken": "^9.0.2",
"react": "^18.2.0",
"react-datepicker": "^6.1.0",
"react-dom": "^18.2.0",
"react-router-dom": "^6.22.0",
"socket.io-client": "^4.7.4",
"stripe": "^14.16.0"
}
}