forked from geckosio/geckos.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
74 lines (74 loc) · 2.52 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
{
"name": "geckos.io",
"description": "Real-time client/server communication over UDP using WebRTC and Node.js",
"version": "1.0.0",
"private": true,
"scripts": {
"start": "npm run dev",
"lerna:ls": "lerna ls",
"lerna:diff": "lerna diff",
"lerna:changed": "lerna changed",
"lerna:version": "npm run build && lerna version --no-changelog --no-push --no-git-tag-version --no-commit-hooks && cd packages/client && npm run bundle",
"build:common": "tsc --build packages/common/tsconfig.json",
"build:client": "tsc --build packages/client/tsconfig.json",
"build:server": "tsc --build packages/server/tsconfig.json",
"build": "npm run clear && npm run build:common && npm run build:client && npm run build:server",
"publish": "npm-run-all build publish:*",
"publish:common": "cd packages/common/ && npm publish",
"publish:server": "cd packages/server/ && npm publish",
"publish:client": "cd packages/client/ && npm publish",
"dev": "npm run build && cd packages/chatApp && npm run dev",
"prettier": "prettier --write 'src/**/*.ts' && prettier --write 'dev/chatApp/**/*.ts'",
"postinstall": "lerna bootstrap --no-ci && npm run build",
"test": "npm run build-client-bundle && jest --coverage --forceExit",
"clear": "rimraf packages/client/lib packages/common/lib packages/server/lib",
"build-client-bundle": "webpack --config packages/client/webpack/webpack.prod.js --path=../../../test/.tmp --packageVersion=latest"
},
"keywords": [
"realtime",
"framework",
"webrtc",
"nodejs",
"udp",
"sctp",
"events",
"io"
],
"author": "Yannick Deubel (https://github.com/yandeu)",
"license": "BSD-3-Clause",
"repository": {
"type": "git",
"url": "git://github.com/geckosio/geckos.io.git"
},
"bugs": {
"url": "https://github.com/geckosio/geckos.io/issues"
},
"homepage": "http://geckos.io",
"directories": {
"lib": "lib"
},
"dependencies": {
"source-map-support": "^0.5.11"
},
"devDependencies": {
"copy-webpack-plugin": "^5.0.2",
"express": "^4.16.4",
"html-webpack-plugin": "^3.2.0",
"jest": "^26.1.0",
"jest-puppeteer": "^4.1.1",
"lerna": "^3.22.1",
"nodemon": "^1.18.11",
"npm-run-all": "^4.1.5",
"prettier": "^1.17.0",
"puppeteer": "^3.3.0",
"rimraf": "^3.0.2",
"ts-loader": "^5.3.3",
"typescript": "^3.9.7",
"webpack": "^4.29.6",
"webpack-cli": "^3.3.12",
"webpack-node-externals": "^1.7.2"
},
"funding": {
"url": "https://github.com/sponsors/yandeu"
}
}