-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
26 lines (26 loc) · 882 Bytes
/
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
{
"name": "coinche",
"private": "true",
"type": "module",
"workspaces": [
"ressources/*"
],
"scripts": {
"clean": "rm -rf node_modules ressources/game/node_modules ressources/master/node_modules bun.lockb ressources/game/bun.lockb ressources/master/bun.lockb",
"vercel": "cd ressources/game && sh ./merge.sh",
"prepare": "husky",
"format": "prettier --write .",
"game": "cd ressources/game && bun dev",
"master": "cd ressources/master && bun dev"
},
"devDependencies": {
"@commitlint/config-conventional": "^19.6.0",
"@ianvs/prettier-plugin-sort-imports": "^4.4.0",
"commitlint": "^19.6.0",
"husky": "^9.1.7",
"prettier": "^3.4.1",
"prettier-plugin-tailwindcss": "^0.6.9",
"pretty-quick": "^4.0.0",
"typescript": "^5.7.2"
}
}