forked from peer-calls/peer-calls
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
113 lines (113 loc) · 3.81 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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
{
"name": "peer-calls",
"version": "4.0.0-alpha.0",
"private": true,
"description": "Group peer to peer video calls for anybody.",
"repository": "https://github.com/jeremija/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:build && npm run start:server",
"start:server": "go run src/server/main.go",
"start:sfu": "PEERCALLS_NETWORK_TYPE=sfu go run src/server/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 ts && npm run js && npm run js:uglify",
"build:go:linux": "make -C src/server pack-linux && mv src/server/peer-calls peer-calls",
"build:go": "make -C src/server pack && mv src/server/peer-calls peer-calls",
"test": "jest",
"test:go": "go test ./...",
"test:coverage": "jest --coverage",
"test:watch": "jest --watch",
"js": "browserify -g [ loose-envify purge --NODE_ENV production ] -t babelify ./lib/client/index.js -o ./build/index.prod.js",
"js:build": "browserify -p tsify ./src/client/index.tsx -v -d -o ./build/index.js",
"js:watch": "watchify -p tsify ./src/client/index.tsx -v -d -o ./build/index.js",
"js:uglify": "minify build/index.prod.js -o build/index.js",
"css": "node-sass ./src/scss/style.scss -o ./build/",
"css:watch": "npm run css && node-sass --watch ./src/scss/style.scss -o ./build/",
"lint": "eslint --ext ts,tsx .",
"lint:fix": "eslint --ext ts,tsx --fix .",
"ci": "npm run lint && npm run test:coverage && npm run build",
"ts:watch": "tsc --build . --watch --preserveWatchOutput",
"ts": "tsc --build .",
"clean": "rimraf lib/ tsconfig.tsbuildinfo build/*"
},
"babel": {
"presets": [
[
"@babel/preset-env",
{
"forceAllTransforms": true,
"targets": {
"browsers": [
"last 2 versions",
"safari >= 7",
"ie >= 11"
]
}
}
]
]
},
"author": "Jerko Steiner",
"license": "Apache-2.0",
"dependencies": {},
"devDependencies": {
"@babel/core": "^7.8.7",
"@babel/polyfill": "^7.8.7",
"@babel/preset-env": "^7.8.7",
"@types/classnames": "^2.2.10",
"@types/debug": "^4.1.5",
"@types/ejs": "^3.0.1",
"@types/express": "^4.17.3",
"@types/ioredis": "^4.14.9",
"@types/jest": "^25.1.4",
"@types/js-yaml": "^3.12.2",
"@types/lodash": "^4.14.149",
"@types/node": "^13.9.1",
"@types/react": "^16.9.32",
"@types/react-dom": "^16.9.6",
"@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.8",
"@typescript-eslint/eslint-plugin": "^2.23.0",
"@typescript-eslint/parser": "^2.23.0",
"babel-core": "^7.0.0-bridge.0",
"babel-minify": "^0.5.1",
"babelify": "^10.0.0",
"browserify": "^16.5.1",
"chastifol": "^4.1.0",
"classnames": "^2.2.6",
"core-js": "^3.6.4",
"debug": "^4.1.1",
"eslint": "^6.8.0",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-react": "^7.19.0",
"jest": "^25.1.0",
"lodash": "^4.17.15",
"loose-envify": "^1.4.0",
"node-sass": "^4.13.1",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"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": "^9.6.2",
"supertest": "^4.0.2",
"ts-jest": "^25.2.1",
"ts-node": "^8.6.2",
"tsify": "^4.0.1",
"typescript": "^3.8.3",
"watchify": "^3.11.1",
"webrtc-adapter": "^7.5.0"
}
}