-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 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
{
"name": "isc",
"version": "1.0.0",
"description": "WebRTC-application for real-time legal consultations.",
"repository": {
"url": "https://git.infostrategic.com/hse/webrtchse1",
"type": "git"
},
"scripts": {
"build:server": "cd server/; npm run build",
"proxy": "sudo nginx -p $PWD/proxy -c nginx.conf",
"proxy:dev": "sudo nginx -p $PWD/proxy -c nginx.dev.conf",
"start:server": "node dist/main",
"watch": "concurrently --kill-others \"npm run watch:server\" \"npm run watch:client\"",
"watch:server": "cd server/; npm run watch",
"watch:client": "cd client/; npm run dev -- -p 3002",
"lint": "eslint '{client,common,server}/**/*.{ts,tsx}'",
"lint:fix": "eslint --fix '{client,common,server}/**/*.{ts,tsx}'"
},
"main": "dist/main.js",
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^4.25.0",
"@typescript-eslint/parser": "^4.25.0",
"eslint": "^7.27.0",
"eslint-plugin-handled-await": "0.0.1",
"eslint-plugin-import": "^2.23.3",
"eslint-plugin-promise": "^5.1.0",
"eslint-plugin-react": "^7.23.2",
"eslint-webpack-plugin": "^2.5.4",
"typescript": "^4.3.2"
},
"dependencies": {
"redis": "^4.1.0"
}
}