-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
81 lines (81 loc) · 2.43 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
{
"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": "lerna run lint",
"clean": "yarn run clean:artifacts && yarn run clean:packages && yarn run clean:root",
"clean:artifacts": "lerna run clean --parallel",
"clean:packages": "lerna clean --yes",
"clean:root": "rimraf node_modules",
"start": "lerna run start -- --parallel",
"build": "lerna run build --concurrency=1 --stream",
"test": "lerna run test --concurrency=1 --stream",
"test:quick": "lerna run test:quick --concurrency=1 --stream",
"test:coverage": "lerna run test:coverage --parallel",
"test:watch": "lerna run test:watch --parallel",
"publish:release": "lerna publish --force-publish=* --no-push --no-git-tag-version"
},
"resolutions": {
"@types/react": "^16.9.0"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.5.0",
"@typescript-eslint/parser": "^5.59.7",
"babel-eslint": "^10.1.0",
"cross-spawn": "^7.0.02",
"eslint": "^7.32.0",
"eslint-config-airbnb": "^18.1.0",
"eslint-config-prettier": "^6.11.0",
"eslint-config-react-app": "^6.0.0",
"eslint-import-resolver-typescript": "^2.4.0",
"eslint-plugin-flowtype": "^5.2.0",
"eslint-plugin-fp": "^2.3.0",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-react": "^7.24.0",
"eslint-plugin-react-hooks": "^4.2.0",
"husky": "^4.2.5",
"lerna": "^6.6.2",
"lint-staged": "^10.2.9",
"prettier": "2.5.1",
"typescript": "^4.9.5"
},
"engines": {
"node": "18",
"yarn": "^1.22"
},
"version": "0.0.0",
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"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"
}