-
-
Notifications
You must be signed in to change notification settings - Fork 101
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 969 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 969 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
27
28
29
30
31
32
33
34
{
"name": "simpleinstabot-monorepo",
"version": "0.0.0",
"description": "Simple Instagram bot and instauto automation library written in Node.js",
"license": "MIT",
"type": "module",
"author": {
"name": "Mikael Finstad",
"email": "[email protected]",
"url": "https://mifi.no/"
},
"repository": "mifi/SimpleInstaBot",
"workspaces": {
"packages": [
"packages/*"
]
},
"scripts": {
"lint": "eslint --ext .jsx --ext .js --ext .cjs .",
"check": "yarn lint && yarn workspaces foreach -pW run check"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^8.56.1",
"@typescript-eslint/parser": "^8.56.1",
"eslint": "^8.57.1",
"eslint-config-mifi": "^0.1.0",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.0.1",
"eslint-plugin-unicorn": "56.0.1"
},
"packageManager": "[email protected]"
}