-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
38 lines (38 loc) · 1.42 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
{
"name": "JS-Paris-BrainWaves-P2-FilmFusion",
"version": "0.0.1",
"private": true,
"description": "",
"homepage": "https://github.com/wildcodeschool/JS-Paris-BrainWaves-P2-FilmFusion#readme",
"bugs": {
"url": "https://github.com/wildcodeschool/JS-Paris-BrainWaves-P2-FilmFusion/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/wildcodeschool/JS-Paris-BrainWaves-P2-FilmFusion.git"
},
"workspaces": ["client", "server"],
"scripts": {
"postinstall": "node -e \"if (process.env.NODE_ENV === 'production'){process.exit(1)} \" || husky install",
"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": "^18.6.0",
"@commitlint/config-conventional": "^18.6.0",
"concurrently": "^8.2.2",
"cross-env": "^7.0.3",
"husky": "^8.0.3",
"validate-branch-name": "^1.3.0",
"lint-staged": "^15.2.0"
}
}