-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
58 lines (58 loc) · 1.5 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
{
"name": "mbari",
"version": "1.0.0",
"description": "Web based UI and client applications for MBARI.",
"repository": "https://github.com/SumoCreations/mbari.git",
"author": "Sumo Creations LLC",
"license": "MIT",
"private": true,
"workspaces": [
"packages/*",
"apps/*"
],
"engines": {
"node": "16.x.x",
"yarn": "1.22.x"
},
"scripts": {
"prettier": "npx prettier --write packages/*/src/**/*.{js,md,ts,tsx}",
"build": "turbo run build",
"test": "turbo run test",
"prepare": "husky install",
"lint": "eslint --quiet --fix ./packages/*/src/**/*.{ts,tsx}",
"lint:watch": "esw --quiet --fix --watch ./packages/*/src/**/*.{ts,tsx}",
"lint:staged": "lint-staged"
},
"lint-staged": {
"*.{js,ts,tsx, jsx}": [
"eslint --quiet --fix"
],
"*.{json,md,html,js,jsx,ts,tsx}": [
"prettier --write"
]
},
"devDependencies": {
"@sumocreations/scaffolds": "^1.1.6",
"@types/leaflet-mouse-position": "^1.2.1",
"eslint": "^8.11",
"eslint-config-next": "^12.1.5",
"eslint-config-prettier": "^8.5.0",
"eslint-config-react-app": "^7.0.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-watch": "^8.0.0",
"husky": "^7.0.4",
"lint-staged": "^12.4.1",
"rimraf": "^3.0.2",
"turbo": "^1.2.5"
},
"volta": {
"node": "16.18.1",
"yarn": "1.22.19"
},
"dependencies": {
"@types/leaflet.gridlayer.googlemutant": "^0.4.6",
"d3-color": "3.1.0",
"semver": "7.5.2",
"trim-newlines": "3.0.1"
}
}