forked from aqualinkorg/aqualink-app
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
92 lines (92 loc) · 3.04 KB
/
package.json
File metadata and controls
92 lines (92 loc) · 3.04 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
{
"name": "root",
"private": true,
"workspaces": [
"packages/*"
],
"main": "./packages/api/cloud-functions/dist/cloud-functions/main.js",
"scripts": {
"lint": "eslint --cache --cache-location node_modules/.cache/eslint --fix",
"lint:all": "yarn workspaces foreach --since run lint",
"clean": "yarn run clean:artifacts && yarn run clean:packages && yarn run clean:root",
"clean:artifacts": "yarn workspaces foreach --all run clean",
"clean:packages": "yarn workspaces foreach --all --verbose rimraf node_modules",
"clean:root": "rimraf node_modules",
"start": "yarn workspaces foreach --all --parallel run start",
"build": "yarn workspaces foreach --all --verbose run build",
"test": "yarn workspaces foreach --all --verbose run test",
"test:quick": "yarn workspaces foreach run --all --verbose test:quick",
"test:coverage": "yarn workspaces foreach --all --parallel run test:coverage",
"test:watch": "yarn workspaces foreach --all --parallel run test:watch",
"publish:release": "yarn workspaces foreach --topological npm publish --tolerate-republish",
"prepare": "husky",
"audit": "node scripts/yarn-audit-summary.js"
},
"resolutions": {
"@babel/runtime": "^7.26.10",
"axios": "^1.15.0",
"basic-ftp": "^5.2.0",
"brace-expansion": "^1.1.13",
"fast-xml-parser": "^4.5.4",
"file-type": "^21.3.2",
"follow-redirects": "^1.16.0",
"js-yaml": "^4.1.1",
"lodash": "^4.18.0",
"node-forge": "^1.4.0",
"picomatch": "^2.3.2",
"protocol-buffers-schema": "^3.6.1",
"protobufjs": "^7.5.5",
"qs": "^6.14.1",
"yaml": "^1.10.3"
},
"devDependencies": {
"@babel/core": "^7.26.0",
"@babel/plugin-syntax-flow": "^7.26.0",
"@babel/plugin-transform-react-jsx": "^7.25.9",
"@typescript-eslint/eslint-plugin": "^8.18.2",
"@typescript-eslint/parser": "^8.18.2",
"eslint": "^8.57.1",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^10.0.1",
"eslint-import-resolver-typescript": "^3.7.0",
"eslint-plugin-flowtype": "^8.0.3",
"eslint-plugin-fp": "^2.3.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react": "^7.37.2",
"eslint-plugin-react-hooks": "^4.6.2",
"husky": "^9.1.7",
"lint-staged": "^15.3.0",
"prettier": "^3.4.2",
"typescript": "^5.7.3"
},
"engines": {
"node": "20",
"yarn": "^1.22"
},
"version": "0.0.0",
"lint-staged": {
"packages/*/{src,scripts,test}/**/*.{js,jsx,ts,tsx}": [
"yarn run lint"
]
},
"description": "This is the main repository for the Aqualink Coral Monitoring Application.",
"repository": {
"type": "git",
"url": "git+https://github.com/aqualinkorg/aqualink-app.git"
},
"keywords": [
"Climate Change",
"Corals",
"Marine",
"Ocean"
],
"author": "Ovio.org",
"license": "MIT",
"bugs": {
"url": "https://github.com/aqualinkorg/aqualink-app/issues"
},
"homepage": "https://aqualink.org",
"packageManager": "yarn@1.22.21"
}