-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 825 Bytes
/
Copy pathpackage.json
File metadata and controls
26 lines (26 loc) · 825 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
{
"name": "ssdiff-monorepo",
"version": "1.0.0",
"description": "Monorepo that contains all plugins and approaches to solve and help with diffing of two websites",
"repository": "https://github.com/BuilderIO/SSDiff",
"author": "Akshat Garg",
"contributors": [
"sidmohanty11 <sidmohanty11@gmail.com>"
],
"scripts": {
"fmt.check": "prettier --check \"packages/**/*.{js,jsx,ts,tsx,json,css,scss,md}\"",
"fmt": "prettier --write \"packages/**/*.{js,jsx,ts,tsx,json,css,scss,md}\"",
"lint": "eslint --fix \"packages/**/*.{js,jsx,ts,tsx}\""
},
"license": "MIT",
"private": true,
"workspaces": [
"packages/*"
],
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^6.13.2",
"@typescript-eslint/parser": "^6.13.2",
"eslint": "^8.55.0",
"prettier": "^3.1.0"
}
}