-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
96 lines (96 loc) · 3.4 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
{
"name": "peer-calls",
"version": "4.0.0-alpha.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": "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 pack-linux",
"build:go": "make pack",
"test": "jest",
"test:go": "go test ./...",
"test:coverage": "jest --coverage",
"test:watch": "jest --watch",
"js": "webpack --config webpack.prod.js --optimize-minimize",
"js:watch": "webpack --config webpack.dev.js --watch",
"css": "node-sass ./src/sass/style.sass -o ./build/ & node-sass ./src/sass/home.sass -o ./build/",
"css:watch": "npm run css && node-sass --watch ./src/sass/style.sass -o ./build/",
"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.9.6",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/plugin-proposal-object-rest-spread": "^7.9.6",
"@babel/polyfill": "^7.8.7",
"@babel/preset-env": "^7.9.6",
"@babel/preset-react": "^7.9.4",
"@babel/preset-typescript": "^7.9.0",
"@types/classnames": "^2.2.10",
"@types/debug": "^4.1.5",
"@types/ejs": "^3.0.3",
"@types/express": "^4.17.6",
"@types/ioredis": "^4.16.0",
"@types/jest": "^25.2.1",
"@types/js-yaml": "^3.12.3",
"@types/lodash": "^4.14.150",
"@types/node": "^13.13.4",
"@types/react": "^16.9.34",
"@types/react-dom": "^16.9.7",
"@types/react-redux": "^7.1.7",
"@types/react-transition-group": "^4.2.4",
"@types/redux-logger": "^3.0.7",
"@types/simple-peer": "^9.6.0",
"@types/supertest": "^2.0.9",
"@typescript-eslint/eslint-plugin": "^2.30.0",
"@typescript-eslint/parser": "^2.30.0",
"babel-loader": "^8.1.0",
"chastifol": "^4.1.0",
"classnames": "^2.2.6",
"debug": "^4.1.1",
"eslint": "^6.8.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-react": "^7.19.0",
"fastestsmallesttextencoderdecoder": "^1.0.21",
"jest": "^25.5.4",
"lodash": "^4.17.15",
"node-sass": "^4.14.1",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-icons": "^3.10.0",
"react-redux": "^7.2.0",
"react-transition-group": "^4.3.0",
"redux": "^4.0.5",
"redux-logger": "^3.0.6",
"redux-thunk": "^2.3.0",
"rimraf": "^3.0.2",
"screenfull": "^5.0.2",
"simple-peer": "git+https://github.com/jeremija/simple-peer.git#transceiver-mid",
"supertest": "^4.0.2",
"ts-jest": "^25.4.0",
"ts-node": "^8.10.1",
"typescript": "^3.8.3",
"webpack": "^4.43.0",
"webpack-bundle-analyzer": "^3.7.0",
"webpack-cli": "^3.3.12",
"webrtc-adapter": "^7.5.1"
}
}