-
Notifications
You must be signed in to change notification settings - Fork 354
Expand file tree
/
Copy pathpackage.json
More file actions
139 lines (139 loc) · 4.96 KB
/
package.json
File metadata and controls
139 lines (139 loc) · 4.96 KB
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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
{
"name": "farmbot-web-frontend",
"version": "1.1.0",
"description": "Farmbot web frontend.",
"engines": {
"browsers": "defaults",
"bun": "1.x"
},
"packageManager": "bun@1.x",
"repository": {
"type": "git",
"url": "https://github.com/farmbot/farmbot-web-app"
},
"scripts": {
"test-slow": "bun test --bail && bun run coverage-html",
"test-iso": "bash scripts/test_isolated.sh",
"test": "bun test",
"coverage-html": "genhtml -q coverage_fe/lcov.info --output-directory coverage_fe",
"ruby-check": "bundle exec rubocop -c .rubocop.yml && bundle exec brakeman . --skip-files /docker_volumes/",
"ruby-autocorrect": "bundle exec rubocop -c .rubocop.yml -A",
"graph-modules-dot": "bunx madge --dot ./frontend > module_graph.dot",
"graph-modules-svg": "dot -Tsvg module_graph.dot -o module_graph.svg",
"typecheck": "bun scripts/run.js bunx tsc --project tsconfig.tests.json --noEmit",
"dev-typecheck": "bun scripts/run.js bunx tsc --project tsconfig.dev.json --noEmit",
"eslint": "TSESTREE_SINGLE_RUN=true bun scripts/run.js bunx eslint --no-cache frontend public/app-resources/languages",
"sass-lint": "bun scripts/run.js bunx sass-lint -c .sass-lint.yml -v -q && bun scripts/run.js bunx stylelint \"frontend/css/**/*.scss\"",
"sass-fix": "bunx stylelint --fix \"frontend/css/**/*.scss\"",
"sass-check": "bun scripts/run.js bunx sass --no-source-map --load-path=node_modules frontend/css/_index.scss:sass_index.log",
"translation-check": "bun scripts/run.js bunx jshint --config public/app-resources/languages/.config public/app-resources/languages/*.json",
"linters": "X=0;bun run typecheck;X=$(($X+$?));bun run dev-typecheck;X=$(($X+$?));bun run eslint;X=$(($X+$?));bun run sass-lint;X=$(($X+$?));bun run sass-check;X=$(($X+$?));bun run translation-check;X=$(($X+$?));[ $X = 0 ]"
},
"keywords": [
"farmbot"
],
"author": "farmbot.io",
"license": "MIT",
"browser": {
"mqtt": "mqtt/dist/mqtt.esm.js"
},
"dependencies": {
"@blueprintjs/core": "6.11.3",
"@blueprintjs/select": "6.1.8",
"@monaco-editor/react": "4.7.0",
"@react-spring/three": "10.0.3",
"@react-three/drei": "10.7.7",
"@react-three/fiber": "9.5.0",
"@rollbar/react": "1.0.0",
"@types/bun": "^1.3.11",
"@types/lodash": "4.17.24",
"@types/markdown-it": "14.1.2",
"@types/markdown-it-emoji": "^3.0.1",
"@types/promise-timeout": "1.3.3",
"@types/react": "19.2.14",
"@types/react-color": "3.0.13",
"@types/react-dom": "19.2.3",
"@types/react-test-renderer": "^19.1.0",
"@types/redux-immutable-state-invariant": "^2.1.4",
"@types/three": "0.183.1",
"@types/ws": "8.18.1",
"@xterm/xterm": "6.0.0",
"axios": "1.14.0",
"bowser": "2.14.1",
"browser-speech": "1.1.1",
"delaunator": "5.1.0",
"events": "3.3.0",
"farmbot": "15.9.3",
"fengari": "0.1.5",
"fengari-web": "0.1.4",
"i18next": "26.0.3",
"lodash": "4.18.1",
"markdown-it": "14.1.1",
"markdown-it-emoji": "3.0.0",
"moment": "2.30.1",
"monaco-editor": "0.55.1",
"mqtt": "5.15.1",
"process": "0.11.10",
"promise-timeout": "1.3.0",
"punycode": "2.3.1",
"querystring-es3": "0.2.1",
"react": "19.2.4",
"react-color": "2.19.3",
"react-dom": "19.2.4",
"react-redux": "9.2.0",
"react-router": "7.14.0",
"redux": "5.0.1",
"redux-immutable-state-invariant": "2.1.0",
"redux-thunk": "3.1.0",
"rollbar": "3.1.0",
"suncalc": "1.9.0",
"takeme": "0.12.0",
"three": "0.183.2",
"typescript": "6.0.2",
"url": "0.11.4"
},
"devDependencies": {
"@eslint/js": "10.0.1",
"@happy-dom/global-registrator": "20.8.9",
"@react-three/eslint-plugin": "0.1.2",
"@testing-library/dom": "10.4.1",
"@testing-library/jest-dom": "6.9.1",
"@testing-library/react": "16.3.2",
"@testing-library/user-event": "14.6.1",
"@types/delaunator": "5.0.3",
"@types/jest": "30.0.0",
"@types/readable-stream": "4.0.23",
"@types/suncalc": "1.9.2",
"@typescript-eslint/eslint-plugin": "8.58.0",
"@typescript-eslint/parser": "8.58.0",
"eslint": "10.2.0",
"eslint-plugin-eslint-comments": "3.2.0",
"eslint-plugin-import": "2.32.0",
"eslint-plugin-jest": "29.15.1",
"eslint-plugin-no-null": "1.0.2",
"eslint-plugin-promise": "7.2.1",
"eslint-plugin-react": "7.37.5",
"eslint-plugin-react-hooks": "7.0.1",
"happy-dom": "20.8.9",
"jest": "30.3.0",
"jest-canvas-mock": "2.5.2",
"jest-cli": "30.3.0",
"jest-environment-jsdom": "30.3.0",
"jest-junit": "16.0.0",
"jest-skipped-reporter": "0.0.5",
"jshint": "2.13.6",
"madge": "8.0.0",
"path-browserify": "1.0.1",
"playwright": "1.59.1",
"postcss": "^8.5.9",
"postcss-scss": "^4.0.9",
"raf": "3.4.1",
"react-test-renderer": "19.2.4",
"sass": "1.99.0",
"sass-lint": "1.13.1",
"stylelint": "^17.6.0",
"stylelint-config-standard-scss": "^17.0.0",
"ts-jest": "29.4.9",
"tslint": "6.1.3"
}
}