-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.27 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
{
"name": "harmonia_p3",
"version": "0.0.1",
"private": true,
"description": "",
"homepage": "https://github.com/WildCodeSchool/harmonia_p3#readme",
"bugs": {
"url": "https://github.com/WildCodeSchool/harmonia_p3/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/WildCodeSchool/harmonia_p3.git"
},
"workspaces": [
"client",
"server"
],
"scripts": {
"postinstall": "husky install || true",
"db:migrate": "npm run db:migrate --workspace=server",
"db:seed": "npm run db:seed --workspace=server",
"dev": "concurrently -c green,yellow -t \"HH:mm:ss\" -p \"{name} {time}\" \"npm:dev:*\"",
"dev:client": "npm run dev --workspace=client",
"dev:server": "npm run dev --workspace=server",
"lint": "lint-staged",
"test": "npm run test --workspaces --if-present",
"clean": "cross-env-shell \"rm -rf ./client/node_modules ./server/node_modules ./node_modules ./package-lock.json\""
},
"keywords": [],
"author": "WildCodeSchool",
"license": "MIT",
"devDependencies": {
"@commitlint/cli": "^19.2.2",
"@commitlint/config-conventional": "^19.2.2",
"concurrently": "^8.2.2",
"cross-env": "^7.0.3",
"husky": "^9.1.2",
"lint-staged": "^15.2.2",
"validate-branch-name": "^1.3.0"
}
}