-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
30 lines (30 loc) · 933 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
{
"name": "online-clothing-shop",
"description": "A modern and user-friendly online clothing shop built with React and Express.js",
"version": "1.0.2",
"private": true,
"license": "MIT",
"author": "Maksym Kovpak <kovpak.maksym@gmail.com>",
"repository": "https://github.com/maks-kovpak/online-clothing-shop.git",
"scripts": {
"build": "yarn workspaces run build",
"client:dev": "yarn workspace client dev",
"client:prod": "yarn workspace client preview",
"lint": "yarn workspaces run lint",
"server:dev": "yarn workspace server dev",
"server:prod": "yarn workspace server start"
},
"workspaces": [
"client",
"server"
],
"devDependencies": {
"@typescript-eslint/eslint-plugin": "~6.20.0",
"@typescript-eslint/parser": "~6.20.0",
"concurrently": "~8.2.2",
"eslint": "~8.56.0",
"prettier": "~3.2.4",
"syncpack": "~12.3.0",
"typescript": "~5.3.3"
}
}