-
-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
36 lines (36 loc) · 1005 Bytes
/
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
{
"name": "root",
"description": "Monorepo for Directus Sync",
"author": "Edouard Demotes-Mainard <edouard@tractr.net>",
"repository": {
"type": "git",
"url": "https://github.com/tractr/directus-sync.git"
},
"license": "GPL-3.0",
"workspaces": [
"packages/*"
],
"scripts": {
"lerna": "lerna",
"clean": "lerna clean",
"build": "lerna run build",
"bootstrap": "lerna run bootstrap",
"test": "lerna run test",
"format": "prettier --write \"**/*.{js,jsx,ts,tsx,json,md,gql,mjs}\"",
"lint": "eslint --fix .",
"prepare": "husky install"
},
"devDependencies": {
"@commitlint/cli": "^19.4.1",
"@commitlint/config-conventional": "^19.4.1",
"@eslint/eslintrc": "^3.1.0",
"@eslint/js": "^9.9.1",
"@typescript-eslint/eslint-plugin": "^8.4.0",
"@typescript-eslint/parser": "^8.4.0",
"eslint-config-prettier": "^9.1.0",
"husky": "^9.1.5",
"lerna": "^8.1.8",
"prettier": "^3.3.3",
"typescript": "^5.5.4"
}
}