-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 1.01 KB
/
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
{
"name": "sync-file-package",
"private": true,
"description": "",
"scripts": {
"dev": "lerna run dev --scope auto-sync-file",
"build": "lerna run build --scope auto-sync-file",
"lint": "eslint . --fix",
"update-version": "lerna version patch --no-private --yes --force-publish",
"publish-npm": "lerna publish from-git --yes --registry https://registry.npmjs.org",
"release": "npm run build && npm run update-version && npm run publish-npm"
},
"devDependencies": {
"@types/minimist": "^1.2.2",
"@types/node": "^18.11.9",
"@typescript-eslint/eslint-plugin": "^5.44.0",
"@typescript-eslint/parser": "^5.44.0",
"eslint": "~8.22.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-node": "^11.1.0",
"lerna": "^6.1.0",
"tsx": "^3.12.1",
"typescript": "^4.6.3",
"auto-sync-file-example-package": "workspace:^"
},
"keywords": [],
"author": "",
"license": "ISC",
"workspaces": [
"packages/*"
]
}