-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.43 KB
/
Copy pathpackage.json
File metadata and controls
46 lines (46 loc) · 1.43 KB
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
35
36
37
38
39
40
41
42
43
44
45
46
{
"name": "root",
"private": true,
"workspaces": [
"packages/*",
"examples/*"
],
"scripts": {
"prepare": "husky install",
"pre-commit": "npm run lint && npm run test",
"prepublishOnly": "npm run build",
"publish": "lerna publish --no-private",
"lint": "eslint packages/ --ext .js,.jsx,.ts,.tsx",
"build": "lerna run build",
"build:watch": "lerna run build:watch",
"test": "lerna run test",
"start": "npm run build && lerna run start --scope=storybook-app"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.42.1",
"@typescript-eslint/parser": "^5.42.1",
"eslint": "^8.27.0",
"eslint-config-prettier": "^8.5.0",
"eslint-config-react-app": "^7.0.1",
"eslint-plugin-github": "^4.4.1",
"eslint-plugin-jsx-a11y": "^6.6.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-sonarjs": "^0.16.0",
"eslint-plugin-unicorn": "^44.0.2",
"husky": "^8.0.2",
"lerna": "^8.1.8",
"prettier": "^2.8.0"
},
"author": {
"name": "Joël Piazzalunga-Lerat"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jpiazzal/ts2doc.git"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/jpiazzal/ts2doc/issues"
},
"homepage": "https://github.com/jpiazzal/ts2doc#readme"
}