-
-
Notifications
You must be signed in to change notification settings - Fork 24
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.4 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.4 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
{
"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/*",
"website"
],
"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",
"docs:start": "npm run start --workspace=website",
"docs:build": "npm run build --workspace=website",
"docs:serve": "npm run serve --workspace=website",
"docs:deploy": "npm run deploy --workspace=website",
"docs:update": "npm run update-help-outputs --workspace=website",
"update-dependencies": "npx npm-check-updates -u --root -ws"
},
"overrides": {
"webpack": "5.105.4"
},
"devDependencies": {
"@commitlint/cli": "^19.7.1",
"@commitlint/config-conventional": "^19.7.1",
"@eslint/eslintrc": "^3.2.0",
"@eslint/js": "^9.19.0",
"@typescript-eslint/eslint-plugin": "^8.23.0",
"@typescript-eslint/parser": "^8.23.0",
"eslint-config-prettier": "^10.0.1",
"husky": "^9.1.7",
"lerna": "^8.1.9",
"prettier": "^3.4.2",
"typescript": "^5.7.3"
}
}