1
1
mirror of https://github.com/bitgapp/eqMac.git synced 2024-11-22 13:07:26 +03:00
eqMac/package.json

39 lines
1007 B
JSON
Raw Normal View History

{
"name": "eqmac",
"version": "1.0.0",
"description": "eqMac Monorepo",
"main": ".eslintrc.js",
2021-04-10 16:32:25 +03:00
"private": true,
"workspaces": {
"packages": [
2021-06-18 16:33:57 +03:00
"modules/*"
],
"nohoist": ["modules/components"]
},
"scripts": {
2021-04-10 16:32:25 +03:00
"lint": "npx eslint .",
"modules-install": "cd modules/ && find . -maxdepth 1 -type d \\( ! -name . \\) -exec bash -c \"cd '{}' && npm i\" \\;"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bitgapp/eqMac.git"
},
"author": "Roman Kisil <Nodeful>",
"license": "ISC",
"bugs": {
"url": "https://github.com/bitgapp/eqMac/issues"
},
"homepage": "https://github.com/bitgapp/eqMac#readme",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^4.19.0",
"eslint": "^7.22.0",
"eslint-config-standard-with-typescript": "^20.0.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.3.1"
},
"dependencies": {
"typescript": "^4.2.3"
}
}