-
-
Notifications
You must be signed in to change notification settings - Fork 37
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 704 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 704 Bytes
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
{
"name": "@openclimatefix/nowcasting",
"version": "0.0.0",
"private": true,
"repository": "git@github.com:openclimatefix/nowcasting.git",
"scripts": {
"pre-commit": "pre-commit run --all-files",
"prepare": "husky install"
},
"workspaces": [
"packages/nowcasting-tsconfig",
"apps/nowcasting-app",
"apps/quartz-app"
],
"devDependencies": {
"@babel/eslint-parser": "^7.18.9",
"eslint": "8.10.0",
"eslint-config-next": "^12.3.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"husky": ">=6",
"lint-staged": ">=10",
"turbo": "^1.0.26"
},
"lint-staged": {
"**/*.(t|j)(s|sx)": "eslint --cache --fix"
}
}