-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.89 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.89 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
{
"name": "triptogether",
"version": "1.0.0",
"description": "TripTogether est une application web full stack de co-organisation de voyages en groupe, développée avec React, TypeScript, Node.js, Express et MySQL selon une architecture monorepo.",
"homepage": "https://github.com/earzalien/triptogether#readme",
"bugs": {
"url": "https://github.com/earzalien/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/earzalien/triptogether.git"
},
"workspaces": [
"client",
"server"
],
"scripts": {
"build": "npm run build --workspaces --if-present",
"check": "biome check --error-on-warnings --no-errors-on-unmatched --staged . && npm run check-types --workspaces --if-present",
"check:fix": "biome check --write --error-on-warnings --no-errors-on-unmatched --staged .",
"clean": "node ./bin/clean",
"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",
"prepare": "git config core.hooksPath .git-hooks || true",
"start": "npm run start --workspace=server",
"test": "npm run test --workspaces --if-present"
},
"keywords": [
"travel",
"group-travel",
"fullstack",
"react",
"nodejs",
"mysql",
"typescript"
],
"author": "Kevin RESSEGAIRE",
"license": "MIT",
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@commitlint/cli": "^19.8.0",
"@commitlint/config-conventional": "^19.8.0",
"concurrently": "^9.1.2",
"validate-branch-name": "^1.3.2"
},
"dependencies": {
"argon2": "^0.44.0",
"jsonwebtoken": "^9.0.3"
},
"main": "commitlint.config.js",
"bin": {
"p3-remote-vert-triptogether": "bin/clean.js"
},
"type": "commonjs"
}