-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
29 lines (29 loc) · 1000 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
27
28
29
{
"name": "smiler",
"author": "Darkzarich",
"version": "1.0.0",
"description": "Smiler project monorepository.",
"packageManager": "[email protected]",
"scripts": {
"dev": "concurrently --kill-others \"pnpm --filter server dev\" \"pnpm --filter client dev\"",
"front:build": "pnpm --filter \"@smiler/frontend\" build",
"front:dev": "pnpm --filter \"@smiler/frontend\" dev",
"back:dev": "pnpm --filter \"@smiler/backend\" dev",
"back:serve": "pnpm --filter \"@smiler/backend\" start",
"lint:spell": "cspell --no-progress .",
"test:all": "pnpm --filter \"@smiler/backend\" test && pnpm --filter \"@smiler/frontend\" test:e2e",
"knip": "knip"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/Darkzarich/Smiler/issues"
},
"homepage": "https://github.com/Darkzarich/Smiler#readme",
"devDependencies": {
"@types/node": "^22.10.2",
"concurrently": "^7.6.0",
"cspell": "^8.8.1",
"knip": "^5.41.1",
"typescript": "^5.7.2"
}
}