-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
31 lines (31 loc) · 1001 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": "chatty",
"version": "1.0.0",
"private": true,
"description": "Chatty is a chat application built using a monorepo structure with React for the frontend and NestJS for the backend. The project aims to provide a seamless and real-time chat experience. Initialized since my first year at HEI but not yet finished xD",
"main": "index.js",
"workspaces": [
"api",
"ui"
],
"scripts": {
"api": "npm run start:dev -w api",
"ui": "npm run dev -w ui",
"start": "concurrently \"npm run api\" \"npm run ui\"",
"format": "prettier --write . --ignore-path .prettierignore",
"format:check": "prettier --check . --ignore-path .prettierignore",
"release": "standard-version"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"concurrently": "^9.1.2",
"prettier": "^2.3.2",
"prettier-plugin-organize-imports": "^4.1.0",
"standard-version": "^9.3.2"
},
"dependencies": {
"react-router-dom": "^7.1.1"
}
}