-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
59 lines (59 loc) · 1.27 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
{
"name": "spotnikgui",
"private": true,
"version": "3.1.6",
"main": "index.js",
"dependencies": {
"basic-ftp": "^4.6.2",
"body-parser": "^1.19.0",
"bootstrap": "4.3.1",
"dedent-js": "^1.0.1",
"execa": "^2.1.0",
"express": "^4.17.1",
"express-sse": "^0.5.3",
"formatcoords": "^1.1.3",
"humanize-duration": "^3.23.1",
"ini": "^1.3.5",
"isomorphic-fetch": "^2.2.1",
"next": "^9.0.4",
"notie": "^4.3.1",
"play-dtmf": "^0.1.1",
"pretty-bytes": "^5.4.1",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"slice-file": "^1.0.0",
"system.global": "^2.0.0",
"util.promisify": "^1.0.1"
},
"scripts": {
"start": "NODE_ENV=production node server.js"
},
"devDependencies": {
"eslint-config-xo-react": "^0.20.0",
"eslint-plugin-react": "^7.20.6",
"eslint-plugin-react-hooks": "^1.7.0",
"xo": "^0.33.1"
},
"xo": {
"extends": "xo-react",
"envs": [
"node",
"browser",
"shared-node-browser"
],
"rules": {
"react/prop-types": 0,
"func-names": 0,
"unicorn/filename-case": 0,
"react/jsx-no-bind": 0,
"comma-dangle": [
2,
"only-multiline"
]
},
"semicolon": false
},
"engines": {
"node": ">= 7.6.0"
}
}