-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 744 Bytes
/
package.json
File metadata and controls
27 lines (27 loc) · 744 Bytes
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
{
"name": "angular-chat",
"version": "1.0.0",
"description": "Chat made with scoket.io and angular",
"repository": "https://github.com/aIv4ro/angular-chat",
"workspaces": [
"front-angular",
"server-node"
],
"scripts": {
"dev:server": "pnpm --filter server-node dev",
"dev:front": "pnpm --filter front-angular start",
"dev": "pnpm dev:server & pnpm dev:front",
"lint": "eslint --ext .ts"
},
"keywords": [],
"author": "Alvaro Martinez",
"license": "ISC",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "7.5.0",
"eslint": "8.57.0",
"eslint-config-love": "44.0.0",
"eslint-plugin-import": "2.29.1",
"eslint-plugin-n": "16.6.2",
"eslint-plugin-promise": "6.1.1"
}
}