This repository has been archived by the owner on Oct 5, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
90 lines (90 loc) · 2.16 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
{
"name": "moobarn",
"version": "0.9.6",
"description": "MOO Bridge API for React and Node",
"private": false,
"repository": {
"type": "git",
"url": "git+https://github.com/azigler/moobarn.git"
},
"keywords": [
"MOO",
"React",
"Node",
"ES6",
"LambdaMOO",
"API"
],
"author": "Andrew Zigler <andrewzigler@gmail.com> (https://www.andrewzigler.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/azigler/moobarn/issues",
"email": "andrewzigler@gmail.com"
},
"homepage": "https://github.com/azigler/moobarn#readme",
"scripts": {
"dev": "gatsby develop",
"build": "gatsby build",
"clean": "gatsby clean",
"start": "node index.js",
"pm2-start": "gatsby build && pm2 start ecosystem.config.js",
"update-submodules": "git submodule update --remote",
"postinstall": "gatsby build"
},
"dependencies": {
"@digibear/socket-bridge": "^1.0.6",
"@hapi/cookie": "^11.0.2",
"@hapi/hapi": "^20.2.1",
"@hapi/inert": "^6.0.4",
"@hapi/joi": "^17.1.1",
"find-process": "^1.4.7",
"gatsby": "^4.4.0",
"gatsby-plugin-sass": "^5.4.0",
"gatsby-plugin-transition-link": "^1.20.5",
"gatsby-plugin-use-query-params": "^1.0.1",
"pidusage": "^3.0.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-helmet": "^6.1.0",
"sass": "^1.47.0",
"use-query-params": "^1.2.3"
},
"devDependencies": {
"dotenv": "^10.0.0",
"eslint": "^8.6.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.0.0",
"standard": "^16.0.4"
},
"eslintConfig": {
"root": true,
"parserOptions": {
"ecmaVersion": 12
},
"settings": {
"react": {
"version": "detect"
}
},
"env": {
"node": true,
"browser": true
},
"extends": [
"eslint:recommended",
"plugin:react/recommended",
"standard",
"plugin:jsx-a11y/recommended"
],
"rules": {
"react/prop-types": "off",
"camelcase": "off",
"jsx-a11y/no-onchange": "off"
},
"plugins": [
"jsx-a11y"
]
}
}