-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
executable file
·93 lines (93 loc) · 3.59 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
{
"name": "synchazard",
"version": "0.0.6",
"description": "༺ synchazard ༻",
"main": "index.js",
"scripts": {
"start": "npm-run-all --parallel _start:ws _start:data _start:srv",
"build": "node --no-warnings node_modules/malta/src/bin.js source/build.json",
"buildev": "node --no-warnings node_modules/malta/src/bin.js source/buildev.json",
"build:home": "run-s build _sample:home",
"build:hello": "run-s build _sample:hello",
"build:meier": "run-s build _sample:meier",
"build:chess": "run-s build _sample:chess",
"lint": "eslint source",
"lint:fix": "eslint . --fix",
"clean": "node --no-warnings node_modules/malta/src/bin.js source/clean.json",
"cleanall": "node --no-warnings node_modules/malta/src/bin.js source/cleanall.json",
"docs": "node --no-warnings node_modules/malta/src/bin.js source/docs.json",
"docsdev": "node --no-warnings node_modules/malta/src/bin.js source/docsdev.json",
"get:ip": "node source/getIp.js",
"qr": "qrcode-terminal",
"_sample:home": "node --no-warnings node_modules/malta/src/bin.js source/buildHome.json",
"_sample:hello": "node --no-warnings node_modules/malta/src/bin.js source/buildHelloWorld.json",
"_sample:meier": "node --no-warnings node_modules/malta/src/bin.js source/buildMeier.json",
"_sample:chess": "node --no-warnings node_modules/malta/src/bin.js source/buildChess.json",
"_start:ws": "node serverWS/ws_srv.js -vvv",
"_start:data": "node serverWS/srv.js",
"_start:srv": "node server/srv.js",
"bm": "malta source/tk.json"
},
"dependencies": {
"@fedeghe/interval": "^1.0.5",
"minimist": "^1.2.5",
"widgzard": "^3.1.20",
"ws": "^5.1.1"
},
"engines": {
"node": ">=6.4.0",
"npm": ">=4.6.1"
},
"author": "federico.ghedina@gmail.com",
"keywords": [
"io",
"realtime",
"websocket",
"socket"
],
"private": true,
"devDependencies": {
"babel-eslint": "^9.0.0",
"chai": "^4.1.2",
"eslint": "^6.8.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-prettier": "^4.1.0",
"eslint-config-prettierslint-no-headache": "^1.0.0",
"eslint-plugin-html": "^6.0.0",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-prettier": "^3.0.1",
"eslint-plugin-react": "^7.12.4",
"eslint-plugin-react-hooks": "^1.3.0",
"event-stream": "^3.3.4",
"lodash": "^4.17.19",
"malta": "^4.1.33",
"malta-babel": "^1.1.0",
"malta-browser-refresh": "^1.2.16",
"malta-css-uglify": "^1.0.8",
"malta-header-comment": "^1.0.9",
"malta-js-bookmarklet": "^1.0.12",
"malta-js-obfuscator": "^1.0.16",
"malta-js-uglify": "^1.0.11",
"malta-less": "^1.0.11",
"malta-mocha": "^1.0.16",
"malta-rename": "^1.0.6",
"mocha": "^5.2.0",
"npm-run-all": "^4.1.2",
"prettier": "^1.18.2",
"qrcode-terminal": "^0.12.0"
},
"peerDependencies": {
"babel-eslint": "^9.0.0",
"eslint": "^5.14.1",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-prettier": "^4.1.0",
"eslint-plugin-html": "^5.0.3",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-prettier": "^3.0.1",
"eslint-plugin-react": "^7.12.4",
"eslint-plugin-react-hooks": "^1.3.0",
"prettier": "^1.16.4"
}
}