-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.24 KB
/
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
32
33
34
35
36
37
38
39
40
41
42
43
44
{
"name": "chatify",
"version": "1.0.0",
"description": "Realtime chat app, built with node.js, express and react.",
"engines": {
"node": ">=18.0.0",
"pnpm": ">=6.0.0"
},
"scripts": {
"build:client": "cd client && pnpm run build",
"build:server": "cd server && tsc",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"start:server": "cd server && pnpm start",
"start": "pnpm --filter ** start",
"dev": "pnpm --filter ** dev",
"lint:server": "eslint server/ --ext .ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fraineralex/chatify.git"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "7.2.0",
"@typescript-eslint/parser": "7.2.0",
"eslint": "8.57.0",
"eslint-plugin-react-hooks": "4.6.0",
"eslint-plugin-react-refresh": "0.4.6",
"ts-standard": "12.0.2",
"typescript": "5.4.5"
},
"eslintConfig": {
"extends": "./node_modules/ts-standard/eslintrc.json"
},
"keywords": [
"chat",
"realtime"
],
"author": "Frainer Encarnación",
"license": "MIT",
"bugs": {
"url": "https://github.com/fraineralex/chatify/issues"
},
"homepage": "https://github.com/fraineralex/chatify#readme"
}