|
@@ -1,72 +1,25 @@
|
1
|
1
|
{
|
2
|
|
- "name": "excalidraw-room",
|
3
|
|
- "version": "1.0.0",
|
4
|
|
- "description": "Excalidraw collaboration server",
|
5
|
|
- "main": "index.js",
|
|
2
|
+ "name": "excalidraw-portal",
|
|
3
|
+ "dependencies": {
|
|
4
|
+ "@types/debug": "4.1.5",
|
|
5
|
+ "@types/express": "4.17.11",
|
|
6
|
+ "@types/node": "14.14.21",
|
|
7
|
+ "@types/socket.io": "2.1.4",
|
|
8
|
+ "debug": "4.3.1",
|
|
9
|
+ "express": "4.17.1",
|
|
10
|
+ "prettier": "2.2.1",
|
|
11
|
+ "socket.io": "2.3.0",
|
|
12
|
+ "typescript": "4.1.3"
|
|
13
|
+ },
|
|
14
|
+ "license": "MIT",
|
|
15
|
+ "main": "dist/index.js",
|
6
|
16
|
"scripts": {
|
7
|
17
|
"build": "tsc",
|
8
|
|
- "fix": "yarn prettier --write",
|
|
18
|
+ "format": "yarn prettier --write",
|
9
|
19
|
"lint": "yarn prettier --list-different",
|
10
|
20
|
"prettier": "prettier \"**/*.{ts,md,json,yaml,yml}\"",
|
11
|
21
|
"start": "node dist/index.js",
|
12
|
22
|
"test": "yarn lint"
|
13
|
23
|
},
|
14
|
|
- "repository": {
|
15
|
|
- "type": "git",
|
16
|
|
- "url": "git+https://github.com/excalidraw/excalidraw-room.git"
|
17
|
|
- },
|
18
|
|
- "keywords": [],
|
19
|
|
- "author": "",
|
20
|
|
- "license": "MIT",
|
21
|
|
- "bugs": {
|
22
|
|
- "url": "https://github.com/excalidraw/excalidraw-room/issues"
|
23
|
|
- },
|
24
|
|
- "homepage": "https://github.com/excalidraw/excalidraw-room#readme",
|
25
|
|
- "dependencies": {
|
26
|
|
- "debug": "4.3.1",
|
27
|
|
- "eslint": "7.3.1",
|
28
|
|
- "eslint-config-prettier": "7.0.0",
|
29
|
|
- "eslint-plugin-prettier": "3.3.1",
|
30
|
|
- "express": "4.17.1",
|
31
|
|
- "prettier": "2.2.1",
|
32
|
|
- "socket.io": "2.3.0"
|
33
|
|
- },
|
34
|
|
- "devDependencies": {
|
35
|
|
- "@types/socket.io": "2.1.4",
|
36
|
|
- "@types/debug": "4.1.5",
|
37
|
|
- "@types/express": "4.17.11",
|
38
|
|
- "@types/node": "14.14.12",
|
39
|
|
- "typescript": "4.1.3"
|
40
|
|
- },
|
41
|
|
- "eslintConfig": {
|
42
|
|
- "extends": [
|
43
|
|
- "prettier"
|
44
|
|
- ],
|
45
|
|
- "plugins": [
|
46
|
|
- "prettier"
|
47
|
|
- ],
|
48
|
|
- "rules": {
|
49
|
|
- "curly": "warn",
|
50
|
|
- "no-console": [
|
51
|
|
- "warn",
|
52
|
|
- {
|
53
|
|
- "allow": [
|
54
|
|
- "warn",
|
55
|
|
- "error",
|
56
|
|
- "info"
|
57
|
|
- ]
|
58
|
|
- }
|
59
|
|
- ],
|
60
|
|
- "no-else-return": "warn",
|
61
|
|
- "no-useless-return": "warn",
|
62
|
|
- "prefer-const": [
|
63
|
|
- "warn",
|
64
|
|
- {
|
65
|
|
- "destructuring": "all"
|
66
|
|
- }
|
67
|
|
- ],
|
68
|
|
- "prefer-template": "warn",
|
69
|
|
- "prettier/prettier": "warn"
|
70
|
|
- }
|
71
|
|
- }
|
|
24
|
+ "version": "1.0.0"
|
72
|
25
|
}
|