forked from peer-calls/peer-calls
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
97 lines (97 loc) · 3.42 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "peer-calls",
"version": "4.0.0",
"private": true,
"description": "Group peer to peer video calls for anybody.",
"repository": "https://github.com/peer-calls/peer-calls",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"bin": {
"peer-calls": "./lib/index.js"
},
"scripts": {
"start": "npm run css && npm run js && npm run start:server",
"start:server": "PEERCALLS_FS=. go run main.go",
"start:sfu": "PEERCALLS_NETWORK_TYPE=sfu go run main.go",
"start:watch": "chastifol [ npm run js:watch ] [ npm run css:watch ] [ npm run start:server ]",
"prepublishOnly": "npm run build",
"build": "npm run css && npm run js",
"build:go:linux": "make build-linux",
"build:go": "make build",
"test": "jest",
"test:go": "go test ./...",
"test:coverage": "jest --coverage",
"test:watch": "jest --watch",
"js": "webpack --config webpack.prod.js --optimization-minimize",
"js:watch": "webpack --config webpack.dev.js --watch",
"css": "sass ./src/sass/style.sass ./build/style.css",
"css:watch": "npm run css && sass --watch ./src/sass/style.sass ./build/style.css",
"lint": "eslint --ext ts,tsx .",
"lint:fix": "eslint --ext ts,tsx --fix .",
"ci": "npm run lint && npm run test:coverage && npm run ts && npm run build",
"ts:watch": "tsc --build . --watch --preserveWatchOutput",
"ts": "tsc --build .",
"clean": "rimraf lib/ tsconfig.tsbuildinfo build/*"
},
"author": "Jerko Steiner",
"license": "Apache-2.0",
"dependencies": {},
"devDependencies": {
"@babel/core": "^7.13.15",
"@babel/plugin-proposal-class-properties": "^7.13.0",
"@babel/plugin-proposal-object-rest-spread": "^7.13.8",
"@babel/preset-env": "^7.13.15",
"@babel/preset-react": "^7.13.13",
"@babel/preset-typescript": "^7.13.0",
"@types/classnames": "^2.2.11",
"@types/debug": "^4.1.5",
"@types/ejs": "^3.0.6",
"@types/express": "^4.17.11",
"@types/ioredis": "^4.22.3",
"@types/jest": "^26.0.22",
"@types/lodash": "^4.14.168",
"@types/node": "^14.14.41",
"@types/react": "^17.0.3",
"@types/react-dom": "^17.0.3",
"@types/react-redux": "^7.1.16",
"@types/react-transition-group": "^4.4.1",
"@types/redux-logger": "^3.0.8",
"@types/simple-peer": "^9.6.2",
"@typescript-eslint/eslint-plugin": "^4.22.0",
"@typescript-eslint/parser": "^4.22.0",
"babel-loader": "^8.2.2",
"buffer": "^6.0.3",
"chastifol": "^4.1.0",
"classnames": "^2.3.1",
"core-js": "^3.10.1",
"debug": "^4.3.1",
"eslint": "^7.24.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-react": "^7.23.2",
"fastestsmallesttextencoderdecoder": "^1.0.22",
"jest": "^26.6.3",
"lodash": "^4.17.21",
"process": "^0.11.10",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-icons": "^3.11.0",
"react-redux": "^7.2.3",
"react-transition-group": "^4.4.1",
"redux": "^4.1.0-alpha.0",
"redux-logger": "^3.0.6",
"redux-thunk": "^2.3.0",
"regenerator-runtime": "^0.13.7",
"reselect": "^4.0.0",
"rimraf": "^3.0.2",
"sass": "^1.32.11",
"screenfull": "^5.1.0",
"simple-peer": "git+https://github.com/jeremija/simple-peer.git#expose-transceiver-sender-receiver",
"ts-jest": "^26.5.5",
"typescript": "^4.2.4",
"webpack": "^5.33.2",
"webpack-bundle-analyzer": "^4.4.1",
"webpack-cli": "^4.6.0",
"webrtc-adapter": "^7.7.1",
"worker-loader": "^3.0.8"
}
}