-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 2.35 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
{
"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",
"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": {
"axios": "^1.6.8",
"cypress": "^13.8.1",
"husky": "^9.0.0"
},
"dependencies": {
"concurrently": "^9.1.0"
}
}