forked from greenvisionfarm/precision-ag-platform
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 1.15 KB
/
package.json
File metadata and controls
35 lines (35 loc) · 1.15 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
{
"name": "field_mapper",
"version": "1.0.0",
"description": "**Field Mapper** — это открытая веб-платформа для фермеров и агрономов. Она превращает данные с дронов (особенно мультиспектральных, таких как DJI Mavic 3M) в карты предписаний для сельскохозяйственной техники.",
"main": "index.js",
"directories": {
"test": "tests"
},
"scripts": {
"test": "jest",
"test:e2e": "playwright test",
"test:e2e:headed": "playwright test --headed",
"test:e2e:debug": "playwright test --debug",
"test:e2e:ui": "playwright test --ui",
"test:e2e:report": "playwright show-report e2e-results/html-report",
"lint:js": "eslint ."
},
"jest": {
"testEnvironment": "jsdom"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@eslint/js": "^10.0.1",
"@playwright/test": "^1.59.0",
"eslint": "^10.1.0",
"globals": "^17.4.0",
"jest": "^30.2.0",
"jest-environment-jsdom": "^30.2.0"
},
"dependencies": {
"jquery": "^4.0.0"
}
}