-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
31 lines (31 loc) · 903 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
30
31
{
"name": "ssh",
"packageManager": "[email protected]",
"private": true,
"workspaces": {
"packages": [
"apps/*"
]
},
"scripts": {
"dev:front": "yarn workspace front run dev",
"dev:back": "yarn workspace back run dev",
"dev:all": "concurrently -k \"yarn workspace front run dev\" \"yarn workspace back run dev\"",
"build:front": "yarn workspace front run build",
"build:back": "yarn workspace back run build",
"build:all": "yarn build:front & yarn build:back",
"clean": "yarn clean:dist && yarn clean:node_modules",
"clean:dist": "rm -rf apps/dist",
"clean:node_modules": "rm -rf node_modules && rm -rf apps/**/node_modules"
},
"devDependencies": {
"@types/luxon": "^3.4.2",
"@types/node": "^22.13.5",
"concurrently": "^9.1.2",
"typescript": "^5.7.3"
},
"dependencies": {
"dotenv": "^16.4.7",
"luxon": "^3.5.0"
}
}