forked from iw4p/Virtual-3D-Model-Conference-Room
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.45 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
{
"name": "Virtual-3D-Model-Conference-Room",
"description": "Virtual 3D Model Conference Room",
"version": "1.0.0",
"license": "MIT",
"scripts": {
"start": "npm-run-all --parallel server client",
"server": "node server/server.js",
"client": "http-server website/ -S -C cert.pem -o -c-1"
},
"dependencies": {
"eslint": "^7.30.0",
"express": "^4.17.1",
"http-server": "^0.12.3",
"npm-run-all": "^4.1.5",
"socket.io": "^4.1.3"
},
"eslintConfig": {
"env": {
"browser": true,
"es2021": true
},
"extends": "eslint:recommended",
"globals": {
"OV": "writable",
"$": "readonly",
"fflate": "readonly",
"Pickr": "readonly",
"THREE": "readonly",
"DracoDecoderModule": "readonly",
"rhino3dm": "readonly",
"IfcAPI": "readonly"
},
"parserOptions": {
"ecmaVersion": 12
},
"rules": {
"semi": "error",
"no-var": "error",
"guard-for-in": "error",
"no-use-before-define": "error",
"no-new": "error",
"no-new-object": "error",
"no-new-func": "error",
"no-array-constructor": "error",
"no-prototype-builtins": "error",
"no-eval": "error",
"no-useless-escape": "error",
"no-multiple-empty-lines": "error",
"comma-spacing": "error",
"prefer-arrow-callback": "error",
"quotes": [
"error",
"single"
],
"block-scoped-var": "error",
"no-loop-func": "error",
"no-undef": "error",
"no-extend-native": "error",
"eqeqeq": "error",
"no-unused-vars": "off"
}
}
}