forked from project-chip/matter.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
27 lines (27 loc) · 929 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
{
"name": "matter.js-monorepo",
"private": true,
"workspaces": [
"packages/matter.js",
"packages/matter-node.js"
],
"scripts": {
"prepare": "npm run build-clean",
"build": "npm run build --workspaces",
"build-clean": "npm run build-clean --workspaces",
"test": "npm run test --workspaces",
"lint": "eslint **/*.ts",
"lint-fix": "eslint --fix **/*.ts",
"format": "tsfmt --useTsconfig tsconfig.tsfmt.lint.json -r",
"format-verify": "tsfmt --useTsconfig tsconfig.tsfmt.lint.json --verify"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.54.0",
"@typescript-eslint/parser": "^5.54.0",
"eslint": "^8.35.0",
"eslint-import-resolver-typescript": "^3.5.3",
"eslint-plugin-import": "^2.27.5",
"typescript": "^4.9.5",
"typescript-formatter": "^7.2.2"
}
}